services: receipthero: build: context: . dockerfile: Dockerfile command: pnpm run dev environment: - DATABASE_PATH=/app/data/receipthero.db - CONFIG_PATH=/app/data/config.json - BUN_DEV_SERVER_PORT=3099 # Move Bun's internal dev server out of the way volumes: - ./data:/app/data ports: - "3000:3000" # Webapp only - API/Worker internal restart: unless-stopped