File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ echo -e "\n🐳 Starting Kafka Docker-Compose stack..."
4545(cd " $BASEDIR " ; docker-compose -f ./docker-compose-debug.yml up -d --scale connect=$SCALE )
4646
4747echo -e " \n⏳ Waiting for Kafka Connect..."
48- CONNECT_URL=http://localhost:80 /connectors
48+ CONNECT_URL=http://localhost:8083 /connectors
4949while [ $( curl -s -o /dev/null -w %{http_code} ${CONNECT_URL} ) != 200 ]; do
5050 echo -e $( date) " \tKafka Connect HTTP state: " $( curl -k -s -o /dev/null -w %{http_code} ${CONNECT_URL} ) " (waiting for 200)"
5151 sleep 2
Original file line number Diff line number Diff line change @@ -83,10 +83,10 @@ services:
8383 - " --api.insecure=true"
8484 - " --providers.docker=true"
8585 - " --providers.docker.exposedbydefault=false"
86- - " --entrypoints.web .address=:80 "
86+ - " --entrypoints.kafka-connect .address=:8083 "
8787 ports :
8888 - " 8080:8080"
89- - " 80:80 "
89+ - " 8083:8083 "
9090 volumes :
9191 - " /var/run/docker.sock:/var/run/docker.sock:ro"
9292 networks :
@@ -133,7 +133,7 @@ services:
133133 - " traefik.enable=true"
134134 - " traefik.http.services.connect.loadbalancer.server.port=8083"
135135 - " traefik.http.routers.connect.rule=PathPrefix(`/`)"
136- - " traefik.http.routers.connect.entrypoints=web "
136+ - " traefik.http.routers.connect.entrypoints=kafka-connect "
137137 networks :
138138 - kafka-connect
139139
You can’t perform that action at this time.
0 commit comments