From 802d275d6eab6899be04de9bf6fe5754dfef4248 Mon Sep 17 00:00:00 2001 From: Arpad Krejczinger Date: Mon, 6 Oct 2025 20:39:21 +0200 Subject: [PATCH] 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 --- config/docker/daemon.json | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/config/docker/daemon.json b/config/docker/daemon.json index 1f0263e..e5f1de0 100644 --- a/config/docker/daemon.json +++ b/config/docker/daemon.json @@ -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-opts": { "max-size": "100m", "max-file": "3" } -} \ No newline at end of file +}