Last active
November 19, 2020 06:20
-
-
Save avarne/769b8e439566c978ae6ac4f6ac7ed34d to your computer and use it in GitHub Desktop.
Kafka Connect Service for docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kafka-connect: | |
image: 'bitnami/kafka:2.5.0' | |
container_name: kafka_connect | |
ports: | |
- '8079:8083' | |
volumes: | |
- './kafka_connect_data:/bitnami' | |
- './kafka_connect_config/connect-distributed.properties:/opt/bitnami/kafka/config/connect-distributed.properties' | |
depends_on: | |
- zookeeper | |
- kafka | |
command: /opt/bitnami/kafka/bin/connect-distributed.sh /opt/bitnami/kafka/config/connect-distributed.properties |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment