Fix Docker daemon config: Remove invalid JSON comments

- Removed comments from daemon.json (JSON doesn't support comments)
- Synced with deployed working version
- Maintains minimal working configuration with logging only
This commit is contained in:
2025-10-06 20:39:21 +02:00
parent dc16d0302d
commit 802d275d6e

View File

@@ -1,17 +1,7 @@
# Docker Daemon Configuration (Minimal Working Version)
# Deploy to: /etc/docker/daemon.json
#
# Setup commands:
# sudo cp config/docker/daemon.json /etc/docker/
# sudo systemctl restart docker
#
# Note: Removed problematic security settings that caused read-only filesystem issues.
# Only keeping essential logging configuration.
{ {
"log-driver": "json-file", "log-driver": "json-file",
"log-opts": { "log-opts": {
"max-size": "100m", "max-size": "100m",
"max-file": "3" "max-file": "3"
} }
} }