virtual-class / docker-compose.yml
tourmii's picture
Deploy HF Spaces
905b7fd
Raw
History Blame Contribute Delete
835 Bytes
services:
web:
build:
context: .
dockerfile: backend/Dockerfile
ports:
- "8000:8000"
env_file:
- .env
volumes:
# Giữ model VieNeu lại giữa các lần khởi động, khỏi tải lại ~1 GB mỗi lần.
# Volume phải rỗng lúc tạo mới kế thừa được quyền của user lophoc từ image;
# volume cũ do root sở hữu thì xoá đi rồi dựng lại.
- hf-cache:/home/lophoc/.cache/huggingface
# Giọng đã dựng sẵn sống qua mọi lần build lại. Volume rỗng lúc tạo sẽ
# hút luôn nội dung có sẵn trong image, nên bản build kèm PREBUILD_AUDIO=1
# vẫn dùng chung được volume này.
- audio-cache:/srv/content/.audio-cache
restart: unless-stopped
volumes:
hf-cache:
audio-cache: