Files
oc-front/docker-compose.yml
2026-03-06 10:26:00 +01:00

20 lines
546 B
YAML

version: '3.4'
services:
oc-front:
image: oc-front
container_name: oc-front
ports:
- 80:80
networks:
- oc
labels:
- "traefik.enable=true"
- "traefik.http.routers.front.entrypoints=web"
- "traefik.http.routers.front.rule=PathPrefix(`/`)"
- "traefik.http.services.front.loadbalancer.server.port=80"
- "traefik.http.middlewares.front-stripprefix.stripprefix.prefixes=/"
- "traefik.http.routers.front.middlewares=front-stripprefix"
networks:
oc:
external: true