Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix: migrate to compose v2, alter deprecated docker-compose command #17

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ info "Detected Kafka Version: $KAFKA_VERSION"
info "Bringing up Kafka environment"

# Use envsubst to replace environment variables in docker-compose.yml and bring up Docker containers
envsubst < docker-compose.yml | docker-compose up -d
envsubst < docker-compose.yml | docker compose up -d
sleep 10

# Log information about connecting to Kafka
Expand All @@ -73,4 +73,4 @@ info "Please connect to the following IP_ADDRESS:PORT to access Kafka"
docker logs "$(docker ps --format '{{.Names}}' | grep 'kafka' | grep -v 'kafka-ui')" | grep 'advertised.listeners'

# Save the Kafka Address to a github env var so its reusable in other steps
echo "kafka_runner_address=$PRIVATE_IP" >> $GITHUB_ENV
echo "kafka_runner_address=$PRIVATE_IP" >> $GITHUB_ENV