Spaces:
Sleeping
Sleeping
version: "3.8" | |
services: | |
fastapi: | |
image: fastapi | |
command: uvicorn app:app --host 0.0.0.0 --port 7860 --reload --reload-dir /app --reload-include '*.py' | |
ports: | |
- 7860:7860 | |
volumes: | |
- .:/app | |
restart: always | |