You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 9, 2026. It is now read-only.
I noticed that bulkerapp/app/testcontainers/kafka/docker-compose.yml utilizes the bitnamilegacy/kafka:3.7.1 image.
Since Bitnami has moved these images to a legacy repository, they are effectively frozen.
Proposed Solution
I suggest replacing it with the actively maintained alternative: soldevelo/kafka:3.7.1.
This image is a drop-in replacement that preserves the /opt/bitnami/... directory structure and supports the standard environment variables (like ALLOW_ANONYMOUS_LOGIN) used in your configuration. This ensures the test environment remains secure and functional without requiring changes to the setup.
I can submit a quick PR to update this image reference.
Description
I noticed that
bulkerapp/app/testcontainers/kafka/docker-compose.ymlutilizes thebitnamilegacy/kafka:3.7.1image.Since Bitnami has moved these images to a legacy repository, they are effectively frozen.
Proposed Solution
I suggest replacing it with the actively maintained alternative:
soldevelo/kafka:3.7.1.This image is a drop-in replacement that preserves the
/opt/bitnami/...directory structure and supports the standard environment variables (likeALLOW_ANONYMOUS_LOGIN) used in your configuration. This ensures the test environment remains secure and functional without requiring changes to the setup.I can submit a quick PR to update this image reference.