Spaces:
Sleeping
Sleeping
version: '3' | |
services: | |
app: | |
build: | |
context: . | |
dockerfile: Dockerfile | |
ports: | |
- "7860:7860" | |
volumes: | |
- ./:/app | |
restart: unless-stopped | |
env_file: .env | |
command: uvicorn main:app --host 0.0.0.0 --port 7860 |