Description
I noticed that the docker-compose file used for test/docker-compose.yml utilizes the bitnamilegacy/kafka:3.9 image.
Proposed Solution
I suggest replacing the Kafka image with a free, compatible alternative: soldevelo/kafka:3.9.
The soldevelo image is designed as a drop-in replacement for Bitnami. It:
- Tracks upstream Kafka versions.
- Preserves the
/opt/bitnami/... directory structure.
- Fully supports the
KAFKA_CFG_ environment variables used in your current configuration.
This ensures that the existing kafka service definition in docker-compose will continue to work without needing to rewrite the environment variables or volume definitions.
Changes
- Update
image in the kafka service within docker-compose.
If this aligns with the project's needs, I am happy to submit a Pull Request with this update.
Description
I noticed that the
docker-composefile used fortest/docker-compose.ymlutilizes thebitnamilegacy/kafka:3.9image.Proposed Solution
I suggest replacing the Kafka image with a free, compatible alternative:
soldevelo/kafka:3.9.The
soldeveloimage is designed as a drop-in replacement for Bitnami. It:/opt/bitnami/...directory structure.KAFKA_CFG_environment variables used in your current configuration.This ensures that the existing
kafkaservice definition indocker-composewill continue to work without needing to rewrite the environment variables or volume definitions.Changes
imagein thekafkaservice withindocker-compose.If this aligns with the project's needs, I am happy to submit a Pull Request with this update.