22 lines
621 B
YAML
22 lines
621 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
oc-catalog:
|
|
environment:
|
|
- MONGO_DATABASE=DC_myDC
|
|
image: 'oc-catalog:latest'
|
|
ports:
|
|
- 8087:8080
|
|
container_name: oc-catalog
|
|
networks:
|
|
- catalog
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.catalog.entrypoints=web"
|
|
- "traefik.http.middlewares.auth.forwardauth.address=http://oc-auth:8080/oc/forward"
|
|
- "traefik.http.routers.catalog.rule=PathPrefix(/catalog)"
|
|
- "traefik.http.routers.catalog.tls=false"
|
|
- "traefik.http.routers.catalog.middlewares=auth"
|
|
networks:
|
|
catalog:
|
|
external: true |