dashboard
repositories
activity
search
login
APPS
/
ops-dashboard
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
feat: promote/sync/rebuild UI, operations page, bidirectional sync, lifecyc...
Matthias Nott
2026-02-22
7d94ec0d18b46893e23680cf8438109a34cc2a10
[APPS/ops-dashboard.git]
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
services:
ops-dashboard:
build: .
container_name: ops-dashboard
restart: unless-stopped
env_file: .env
volumes:
- /opt/infrastructure:/opt/infrastructure
- /opt/data:/opt/data
- /var/run/docker.sock:/var/run/docker.sock
- ./static:/app/static
labels:
- "traefik.enable=true"
- "traefik.http.routers.ops-dashboard.rule=Host(`cockpit.tekmidian.com`)"
- "traefik.http.routers.ops-dashboard.entrypoints=websecure"
- "traefik.http.routers.ops-dashboard.tls=true"
- "traefik.http.routers.ops-dashboard.tls.certresolver=letsencrypt"
- "traefik.http.services.ops-dashboard.loadbalancer.server.port=8080"
networks:
- coolify
networks:
coolify:
external: true