(damascus-dashboard is archived on Gitea; this is a local-only commit that documents the build workarounds and deploy files in tree.)
23 lines
736 B
YAML
23 lines
736 B
YAML
services:
|
|
dashboard:
|
|
image: nginx:alpine
|
|
container_name: damascus-dashboard
|
|
volumes:
|
|
- ./dist:/usr/share/nginx/html:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
networks:
|
|
- litellm_hermes-net
|
|
extra_hosts:
|
|
- "host.docker.internal:172.19.0.1"
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.damascus-dashboard.rule=Host(`dashboard.damascusfront.net`)"
|
|
- "traefik.http.routers.damascus-dashboard.entrypoints=websecure"
|
|
- "traefik.http.routers.damascus-dashboard.tls.certresolver=cloudflare"
|
|
- "traefik.http.services.damascus-dashboard.loadbalancer.server.port=80"
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
litellm_hermes-net:
|
|
external: true
|