version: '3.8' services: backend: build: context: ./backend ports: - "5000:5000" environment: - NODE_ENV=production frontend: build: context: ./frontend ports: - "3000:80" environment: - NODE_ENV=production