version: '3.8' services: frontend: build: context: . dockerfile: Dockerfile.frontend ports: - "3000:3000" depends_on: - backend environment: - VITE_API_URL=http://backend:3001 backend: build: context: ./server dockerfile: Dockerfile ports: - "3001:3001" volumes: - sqlite_data:/app/data environment: - NODE_ENV=production - DATABASE_PATH=/app/data/cashback.db volumes: sqlite_data: