From a835af2d71b680a19d1e0fd6c647d02309f685fd Mon Sep 17 00:00:00 2001 From: Linus Rath <139418639+rathlinus@users.noreply.github.com> Date: Sat, 21 Mar 2026 18:08:32 +0100 Subject: [PATCH] fix: update .env.example to clarify Docker volume mounting for settings data directory --- .env.example | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 8bbbf2cb..0f678b58 100644 --- a/.env.example +++ b/.env.example @@ -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 # =============================================================================