oc-catalog/docker-compose.yml

21 lines
528 B
YAML
Raw Normal View History

2024-07-26 13:07:25 +02:00
version: '3.4'
services:
oc-catalog:
environment:
- MONGO_DATABASE=DC_myDC
2024-08-08 08:32:59 +02:00
image: 'oc-catalog:latest'
2024-07-26 13:07:25 +02:00
ports:
- 8087:8080
2024-08-08 08:32:59 +02:00
container_name: oc-catalog
2024-07-26 13:07:25 +02:00
networks:
- catalog
2024-10-30 10:51:18 +01:00
labels:
2024-10-30 17:11:56 +01:00
- "traefik.enable=true"
- "traefik.http.routers.catalog.entrypoints=web"
2024-11-04 14:19:56 +01:00
- "traefik.http.routers.catalog.rule=PathPrefix(/catalog)"
2024-10-30 17:11:56 +01:00
- "traefik.http.routers.catalog.tls=false"
- "traefik.http.routers.catalog.middlewares=auth"
2024-07-26 13:07:25 +02:00
networks:
catalog:
external: true