fix network in docker

This commit is contained in:
Jan Koppe 2021-12-23 17:37:57 +00:00
parent a196a935ea
commit b377d00af3
1 changed files with 7 additions and 0 deletions

View File

@ -4,6 +4,8 @@ services:
nginx:
image: nginx
restart: unless-stopped
networks:
- ingress
ports:
- 9999:80
volumes:
@ -15,3 +17,8 @@ services:
- "traefik.http.routers.infobeamer.rule=Host(`infobeamer.montage2.de`)"
- "traefik.http.routers.infobeamer.entrypoints=web,websecure"
- "traefik.http.routers.infobeamer.tls.certresolver=default"
networks:
ingress:
name: traefik
external: true