version: '3.8' services: frontend: build: ./frontend ports: - "3000:3000" volumes: - ./frontend:/app - /app/node_modules environment: - VITE_API_URL=http://localhost:5000 backend: build: ./backend ports: - "5000:5000" volumes: - ./backend:/app