version: "3.8" services: api: build: context: ./api dockerfile: Dockerfile ports: - "5000:5000" volumes: - ./scrapers:/app/scrapers environment: - FLASK_ENV=production client: build: context: ./client dockerfile: Dockerfile ports: - "3000:3000" scraper: build: context: ./scrapers dockerfile: Dockerfile volumes: - ./scrapers:/app