Spaces:
Sleeping
Sleeping
File size: 617 Bytes
7e3b585 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | version: '3.8'
services:
cosmopedia:
build: .
ports:
- "7860:7860"
environment:
- PORT=7860
- PYTHONUNBUFFERED=1
volumes:
- ./data:/app/data:ro
- ./static:/app/static:ro
- ./templates:/app/templates:ro
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
# Optional: Redis for caching (if needed)
# redis:
# image: redis:alpine
# ports:
# - "6379:6379"
# restart: unless-stopped
|