From 4be3171740187a600606c2325a4e29852022634d Mon Sep 17 00:00:00 2001 From: Micha Date: Sun, 29 Mar 2026 17:42:03 +0000 Subject: [PATCH] fix(authelia): remove :ro from config volume mount Authelia needs write access to config dir at startup (chown). --- security/authelia/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/authelia/docker-compose.yml b/security/authelia/docker-compose.yml index a16a041..ac85c7f 100644 --- a/security/authelia/docker-compose.yml +++ b/security/authelia/docker-compose.yml @@ -10,7 +10,7 @@ services: AUTHELIA_STORAGE_ENCRYPTION_KEY_FILE: /secrets/storage_encryption_key.txt AUTHELIA_STORAGE_POSTGRES_PASSWORD_FILE: /secrets/postgres_password.txt volumes: - - /mnt/user/appdata/authelia/config:/config:ro + - /mnt/user/appdata/authelia/config:/config - /mnt/user/appdata/secrets/authelia_jwt_secret.txt:/secrets/jwt_secret.txt:ro - /mnt/user/appdata/secrets/authelia_session_secret.txt:/secrets/session_secret.txt:ro - /mnt/user/appdata/secrets/authelia_storage_encryption_key.txt:/secrets/storage_encryption_key.txt:ro