Files
test_dashboard/docker-compose.yml
T
2026-05-28 12:34:01 -04:00

26 lines
568 B
YAML

services:
backend:
build: ./server
container_name: dashboard-backend
ports:
- "3001:3001"
environment:
- HOST_BROWSE_ROOT=${HOST_BROWSE_ROOT:-C:/Users}
- HOST_MOUNT_ROOT=/host
volumes:
- type: bind
source: ./server
target: /app
- type: bind
source: ${HOST_BROWSE_ROOT:-C:/Users}
target: /host
restart: unless-stopped
frontend:
build: ./dashboard
container_name: dashboard-frontend
ports:
- "5173:80"
depends_on:
- backend
restart: unless-stopped