Files
test_dashboard/docker-compose.yml
T
2026-05-26 14:36:34 -04:00

22 lines
509 B
YAML

services:
backend:
build: ./server
container_name: dashboard-backend
ports:
- "3001:3001"
environment:
- BROWSE_ROOTS=/host
volumes:
- ./server:/app
# Host file browsing root inside container (adjust HOST_BROWSE_ROOT if needed)
- ${HOST_BROWSE_ROOT:-C:/Users}:/host
restart: unless-stopped
frontend:
build: ./dashboard
container_name: dashboard-frontend
ports:
- "5173:80"
depends_on:
- backend
restart: unless-stopped