Files
oc-shared/docker-compose.yml
2024-10-30 17:09:17 +01:00

24 lines
642 B
YAML

version: '3.4'
services:
oc-shared:
environment:
- MONGO_DATABASE=DC_myDC
image: 'oc-shared:latest'
ports:
- 8091:8080
container_name: oc-shared
labels:
- "traefik.enable=true"
- "traefik.http.routers.shared.entrypoints=web"
- "traefik.http.routers.shared.rule=Host(`localhost`)"
- "traefik.routers.shared.rule=Path(/shared)"
- "traefik.http.routers.shared.tls=false"
- "traefik.http.services.shared.loadbalancer.server.port=80"
- "traefik.http.routers.shared.middlewares=auth"
networks:
- catalog
networks:
catalog:
external: true