mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-23 13:09:00 +00:00
(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:
parent
57e6a12d08
commit
2a03014652
@ -94,6 +94,8 @@ services:
|
||||
restart: always
|
||||
ports:
|
||||
- "127.0.0.1:2181:2181"
|
||||
networks:
|
||||
- wmsa
|
||||
traefik:
|
||||
image: "traefik:v2.10"
|
||||
container_name: "traefik"
|
||||
|
@ -122,6 +122,8 @@ services:
|
||||
restart: always
|
||||
ports:
|
||||
- "127.0.0.1:2181:2181"
|
||||
networks:
|
||||
- wmsa
|
||||
traefik:
|
||||
image: "traefik:v2.10"
|
||||
container_name: "traefik"
|
||||
|
Loading…
Reference in New Issue
Block a user