Files
damascus-dashboard/docker-compose.yml
root aec9d2a544
Some checks failed
CI / Test (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Docker Build Check (push) Has been cancelled
CI / Lint (push) Has been cancelled
chore(dashboard): build workarounds + deploy config
(damascus-dashboard is archived on Gitea; this is a local-only commit
that documents the build workarounds and deploy files in tree.)
2026-06-27 16:44:15 +00:00

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