Update README.md

Always mount config files as read-only. Otherwise, the app can corrupt your configuration. This would be an isolation violation.
This commit is contained in:
Andreas Schildbach 2024-04-23 19:34:46 +02:00 committed by Manuel Stahl
parent 5d1e43611c
commit e094047388

View file

@ -116,7 +116,7 @@ services:
synapse-admin:
...
volumes:
./config.json:/app/config.json
./config.json:/app/config.json:ro
...
```