(run/install.sh) fix docker compose file

I was following the release demo video for v2024.01.0
https://www.youtube.com/watch?v=PNwMkenQQ24 and when I did 'docker
compose up' the containers couldn't resolve the DNS name for 'zookeeper'
I realized this was because the zookeeper container was using the
default docker network, so I specified the wmsa network explicitly.
This commit is contained in:
Your Name 2024-03-17 15:32:04 -04:00
parent 57e6a12d08
commit 2a03014652
2 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,8 @@ services:
restart: always
ports:
- "127.0.0.1:2181:2181"
networks:
- wmsa
traefik:
image: "traefik:v2.10"
container_name: "traefik"

View File

@ -122,6 +122,8 @@ services:
restart: always
ports:
- "127.0.0.1:2181:2181"
networks:
- wmsa
traefik:
image: "traefik:v2.10"
container_name: "traefik"