1
1
mirror of https://github.com/MarginaliaSearch/MarginaliaSearch.git synced 2025-10-05 21:22:39 +02: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:
Your Name
2024-03-17 15:32:04 -04:00
committed by Viktor Lofgren
parent a4b810f511
commit 411b3f3138
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"