2024-07-17 13:28:02 +02:00
|
|
|
version: '3.4'
|
|
|
|
|
|
|
|
services:
|
|
|
|
oc-front:
|
|
|
|
image: oc-front
|
|
|
|
container_name: oc-front
|
|
|
|
ports:
|
|
|
|
- 8080:80
|
|
|
|
networks:
|
|
|
|
- catalog
|
2025-02-21 11:14:46 +01:00
|
|
|
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"
|
|
|
|
- "traefik.http.middlewares.front.forwardauth.address=http://oc-auth:8080/oc/forward"
|
2024-07-17 13:28:02 +02:00
|
|
|
networks:
|
|
|
|
catalog:
|
|
|
|
external: true
|