Refactor m3u-editor service configuration to enhance environment variable management and improve overall clarity in setup.

This commit is contained in:
Nikholas Pcenicni
2026-05-08 22:29:19 -04:00
parent ded15665be
commit 8f1738e80a
2 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# Host port for the Tube Archivist web UI
TA_PORT=8000
# Public URL for Tube Archivist, including protocol and port
TA_HOST=http://localhost:8000
# Initial Tube Archivist credentials
TA_USERNAME=tubearchivist
TA_PASSWORD=your_secure_tubearchivist_password
# Elasticsearch password used by both Tube Archivist and archivist-es
ELASTIC_PASSWORD=your_secure_elasticsearch_password
# Host user/group ownership for downloaded files
HOST_UID=1000
HOST_GID=1000
# Timezone
TZ=UTC
# Host path for downloaded YouTube media
TA_YOUTUBE_PATH=/mnt/media/youtube
# Elasticsearch heap sizing; Tube Archivist recommends 1g for the default stack
ES_JAVA_OPTS=-Xms1g -Xmx1g