Spaces:
Running
Running
File size: 863 Bytes
ba9fa36 330f477 ba9fa36 330f477 ba9fa36 330f477 ba9fa36 330f477 ba9fa36 330f477 ba9fa36 330f477 ba9fa36 330f477 ba9fa36 330f477 | 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 30 31 32 33 | services:
openmusic-analysis:
build: .
container_name: openmusic-analysis-api
restart: unless-stopped # автоперезапуск при падении
ports:
- "8000:7860"
volumes:
- hf_cache:/root/.cache/huggingface
environment:
- PYTHONUNBUFFERED=1
- HF_HOME=/root/.cache/huggingface
- OPENMUSIC_DEVICE=auto
- OPENMUSIC_INFERENCE_CONCURRENCY=1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s # даём время на старт (модели грузятся долго)
deploy:
resources:
limits:
memory: 10G
logging:
driver: "json-file"
options:
max-size: "50m"
max-file: "3"
volumes:
hf_cache:
|