mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-23 21:18:58 +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
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:2181:2181"
|
- "127.0.0.1:2181:2181"
|
||||||
|
networks:
|
||||||
|
- wmsa
|
||||||
traefik:
|
traefik:
|
||||||
image: "traefik:v2.10"
|
image: "traefik:v2.10"
|
||||||
container_name: "traefik"
|
container_name: "traefik"
|
||||||
|
@ -122,6 +122,8 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:2181:2181"
|
- "127.0.0.1:2181:2181"
|
||||||
|
networks:
|
||||||
|
- wmsa
|
||||||
traefik:
|
traefik:
|
||||||
image: "traefik:v2.10"
|
image: "traefik:v2.10"
|
||||||
container_name: "traefik"
|
container_name: "traefik"
|
||||||
|
Loading…
Reference in New Issue
Block a user