From e09404738821992dd560ca9331e604b9b74afe31 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Tue, 23 Apr 2024 19:34:46 +0200 Subject: [PATCH] Update README.md Always mount config files as read-only. Otherwise, the app can corrupt your configuration. This would be an isolation violation. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64a7b3f..5c144b5 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ services: synapse-admin: ... volumes: - ./config.json:/app/config.json + ./config.json:/app/config.json:ro ... ```