feat: Update environment variables and Docker configuration for cache management and temporary directory settings

This commit is contained in:
JB
2025-10-06 16:14:49 -07:00
parent 523e55d8a4
commit 477c5055b4
6 changed files with 37 additions and 31 deletions
+5 -4
View File
@@ -12,10 +12,11 @@ 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. 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.
# write to it. Only audio conversion scratch files are staged here by default;
# other library caches remain inside the container volume. 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.