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