Describe the bug
Using a custom docker network prevents startup.
services:
cup:
image: ghcr.io/sergi0g/cup
container_name: cup
networks:
- pangolin
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./config/cup.json:/config/cup.json
command: -c /config/cup.json serve
restart: unless-stopped
networks:
pangolin:
external: true
It sits at INFO Starting server, please wait... for a very long time. Removing the networks solves this problem.
Describe the bug
Using a custom docker network prevents startup.
It sits at
INFO Starting server, please wait...for a very long time. Removing the networks solves this problem.