feat: Configure cache environment variables for Hugging Face and update Docker settings

This commit is contained in:
JB
2025-10-06 15:50:32 -07:00
parent dc7a115e2e
commit c19050261c
4 changed files with 53 additions and 21 deletions
+4 -3
View File
@@ -12,9 +12,10 @@ ABOGEN_OUTPUT_DIR=./storage/output
# Temporary working directory. When running in Docker, keep this inside the
# mounted data volume (or another writable host path) so non-root users can
# write to it. For local (non-Docker) usage, change this to a path that makes
# sense on your machine or comment it out to fall back to the OS cache
# directory. Mounted to /data/cache in Docker.
# write to it. Hugging Face caches and other temp files are redirected here via
# XDG_CACHE_HOME/HF_HOME when running under Docker. For local (non-Docker)
# usage, change this to a path that makes sense on your machine or comment it
# out to fall back to the OS cache directory. Mounted to /data/cache in Docker.
ABOGEN_TEMP_DIR=./storage/tmp
# UID/GID used when running the Docker container. 1000:1000 matches most Linux hosts.