Files
dashboard/docker-compose.yml
2026-01-31 01:03:36 +01:00

20 lines
441 B
YAML

services:
backend:
image: git.out.jafre.li/jafreli/dashboard-backend:latest
container_name: dashboard-backend
ports:
- "8080:8080"
restart: unless-stopped
volumes:
- ./data/dashboard.db:/root/dashboard.db
frontend:
image: git.out.jafre.li/jafreli/dashboard-frontend:latest
container_name: dashboard-frontend
ports:
- "80:80"
restart: unless-stopped
depends_on:
- backend