Skip to content

Commit

Permalink
added navigatum to the traefik network
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Mar 18, 2024
1 parent 71da442 commit 388ebfc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ services:
webclient:
image: ghcr.io/tum-dev/navigatum-webclient:main
restart: unless-stopped
networks:
- traefik_traefik
labels:
- "traefik.enable=true"
- "traefik.http.routers.navigatum-webclient.entrypoints=webs"
Expand Down Expand Up @@ -42,6 +44,8 @@ services:
tileserver-srv-src: # needed for simpler initialisation of dev environments
image: nginx:1.25
restart: unless-stopped
networks:
- traefik_traefik
labels:
- "traefik.enable=true"
- "traefik.http.routers.navigatum-tileserver-srv.entrypoints=webs"
Expand All @@ -63,6 +67,8 @@ services:
tileserver:
image: maptiler/tileserver-gl:latest
restart: unless-stopped
networks:
- traefik_traefik
labels:
- "traefik.enable=true"
- "traefik.http.routers.navigatum-tileserver.entrypoints=webs"
Expand All @@ -88,6 +94,8 @@ services:
data:
image: ghcr.io/tum-dev/navigatum-data:main
restart: unless-stopped
networks:
- traefik_traefik
labels:
- "traefik.enable=true"
- "traefik.http.routers.navigatum-data.entrypoints=webs"
Expand All @@ -100,6 +108,8 @@ services:
main-api:
image: ghcr.io/tum-dev/navigatum-server:main
restart: unless-stopped
networks:
- traefik_traefik
labels:
- "traefik.enable=true"
- "traefik.http.routers.navigatum-main-api.entrypoints=webs"
Expand Down Expand Up @@ -144,6 +154,8 @@ services:
feedback-api:
image: ghcr.io/tum-dev/navigatum-server:main
restart: unless-stopped
networks:
- traefik_traefik
labels:
- "traefik.enable=true"
- "traefik.http.routers.navigatum-feedback-api.entrypoints=webs"
Expand Down Expand Up @@ -177,6 +189,8 @@ services:
redirect:
image: traefik/whoami
restart: unless-stopped
networks:
- traefik_traefik
labels:
- "traefik.enable=true"
- "traefik.http.routers.navigatum-redirect-unsecure.entrypoints=web"
Expand All @@ -202,3 +216,7 @@ volumes:
driver: local
postgres-data:
driver: local

networks:
traefik_traefik:
external: true

0 comments on commit 388ebfc

Please sign in to comment.