services: api: build: . env_file: .env ports: - "8000:8000" volumes: - ${HERMES_HOME:-/home/your-user/.hermes}:${HERMES_HOME:-/home/your-user/.hermes}:ro restart: unless-stopped frontend: image: node:22-alpine working_dir: /app/frontend command: sh -c "npm ci && npm run dev -- --host 0.0.0.0" environment: VITE_API_BASE_URL: http://localhost:8000 volumes: - .:/app ports: - "5173:5173" depends_on: - api