version: "3.8" services: web: build: . command: "uvicorn app.main:server --host 0.0.0.0 --port 7860" volumes: - .:/app ports: - "7860:7860" env_file: - .env