dlrl2025-docker / docker-compose.yaml
Greg Burlet
initial commit
62139b4
raw
history blame contribute delete
240 Bytes
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