Skip to content

Commit

Permalink
add small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
leej3 committed Nov 13, 2024
1 parent bdc027e commit 4f30bc7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions web/deploy/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
labels:
- traefik.enable=true
- traefik.docker.network=osm_traefik-public
- traefik.http.routers.osm_web_api.rule=Host("`${DEPLOYMENT_URI}`") && PathPrefix(`/api`)
- traefik.http.routers.osm_web_api.rule=Host(`${DEPLOYMENT_URI}`) && PathPrefix(`/api`)
- "traefik.http.routers.osm_web_api.entrypoints=web,websecure"
- traefik.http.services.osm_web_api.loadbalancer.server.port=80
- traefik.http.routers.osm_web_api.tls=true
Expand All @@ -29,18 +29,17 @@ services:
labels:
- traefik.enable=true
- traefik.docker.network=osm_traefik-public
- traefik.http.routers.dashboard.rule=Host("`${DEPLOYMENT_URI}`")
- traefik.http.routers.dashboard.rule=Host(`${DEPLOYMENT_URI}`)
- traefik.http.routers.dashboard.entrypoints=web,websecure
- traefik.http.services.dashboard.loadbalancer.server.port=8501
- traefik.http.routers.dashboard.tls=true
- traefik.http.routers.dashboard.tls.certresolver=le
expose:
- "8501"

networks:
- traefik-public
restart: always

reverse_proxy:
image: traefik
restart: always
Expand Down

0 comments on commit 4f30bc7

Please sign in to comment.