version: "3" services: telemetry-frontend: build: dockerfile: Dockerfile context: ./frontend/ # Copy in changes to the ui, so no need to rebuild the images. volumes: - /app/node_modules - ./packages:/app/packages ports: - 3000:80 telemetry-backend: build: dockerfile: Dockerfile context: ./backend/ environment: - PORT=8000 ports: - 8000:8000 expose: - 8000