fix: update .env.example to clarify Docker volume mounting for settings data directory

This commit is contained in:
Linus Rath
2026-03-21 20:45:22 +01:00
parent 30284859c7
commit a835af2d71
+4 -1
View File
@@ -64,7 +64,10 @@ JMAP_SERVER_URL=https://your-jmap-server.com
# SETTINGS_SYNC_ENABLED=true
# Directory for storing encrypted settings files (default: ./data/settings).
# For Docker, mount a persistent volume at this path.
# For Docker, the working directory is /app, so the default resolves to
# /app/data/settings — mount a persistent volume there:
# volumes:
# - bulwark-settings:/app/data/settings
# SETTINGS_DATA_DIR=./data/settings
# =============================================================================