YouTube / docker-compose.yml
mohmmed5787's picture
Upload 5 files
21fd34a verified
raw
history blame contribute delete
329 Bytes
version: '3.9'
services:
app:
build: .
ports:
- "8000:8000"
volumes:
- ./data:/app/data
environment:
- PYTHONUNBUFFERED=1
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"]
interval: 30s
timeout: 10s
retries: 3