services: pricehunter: build: . ports: - "${PORT:-3000}:3000" volumes: - ./data:/app/data - ./stores:/app/stores environment: - NODE_ENV=production - DATABASE_PATH=/app/data/pricehunter.db - STORES_DIR=/app/stores - PORT=3000 restart: unless-stopped