oc-datacenter/docker-compose.yml

23 lines
644 B
YAML
Raw Normal View History

2024-08-13 11:17:09 +02:00
version: '3.4'
services:
oc-datacenter:
environment:
- MONGO_DATABASE=DC_myDC
image: 'oc-datacenter:latest'
ports:
2024-08-13 14:43:52 +02:00
- 8092:8080
2024-10-30 10:48:56 +01:00
labels:
2024-10-30 17:11:16 +01:00
- "traefik.enable=true"
- "traefik.http.routers.datacenter.entrypoints=web"
2024-11-04 14:29:11 +01:00
- "traefik.http.middlewares.auth.forwardauth.address=http://oc-auth:8080/oc/forward"
2024-11-04 14:23:14 +01:00
- "traefik.http.routers.workflow.rule=PathPrefix(/datacenter)"
2024-10-30 17:11:16 +01:00
- "traefik.http.routers.datacenter.tls=false"
- "traefik.http.routers.datacenter.middlewares=auth"
2024-08-13 11:17:09 +02:00
container_name: oc-datacenter
networks:
- catalog
networks:
catalog:
external: true