Spaces:
Sleeping
Sleeping
File size: 240 Bytes
62139b4 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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
|