fix(tubearchivist): add ES_SNAPSHOT_DIR to .env

ES snapshot repo defaults to Docker path /usr/share/elasticsearch/data/snapshot
but our elasticsearch.yml uses path.repo: /var/lib/elasticsearch/snapshot.
Add ES_SNAPSHOT_DIR=/var/lib/elasticsearch/snapshot to match.
This commit is contained in:
CanbiZ (MickLesk)
2026-03-25 17:05:16 +01:00
parent df6fabdbc4
commit 6983456e68

View File

@@ -90,6 +90,7 @@ TA_BACKEND_PORT=8080
TA_APP_DIR=/opt/tubearchivist
TA_CACHE_DIR=/opt/tubearchivist/cache
TA_MEDIA_DIR=/opt/tubearchivist/media
ES_SNAPSHOT_DIR=/var/lib/elasticsearch/snapshot
ELASTIC_PASSWORD=${ES_PASSWORD}
REDIS_CON=redis://localhost:6379
ES_URL=http://localhost:9200