From 039d582fbb904ef0d1d3d6b6e1c9fef9696beb13 Mon Sep 17 00:00:00 2001 From: astarte75 <72997094+astarte75@users.noreply.github.com> Date: Thu, 21 May 2026 13:24:57 +0200 Subject: [PATCH] fix(aio): use JSON array double quotes in VOLUME instruction (#9099) The community AIO Dockerfile declared the VOLUME instruction with single quotes: VOLUME ['/app/data', '/app/logs']. Docker's JSON (exec) form requires double quotes; with single quotes the line is parsed as the shell form and the bracket/comma tokens become literal volume paths ('[/app/data,' and '/app/logs]'). Docker tolerated these non-absolute anonymous volume paths at container create time until Engine 29.5.0, which now rejects them with "invalid mount config for type volume: invalid mount path: '[/app/data,' mount path must be absolute", breaking `docker compose up --force-recreate` and any container recreation for the AIO community image. Switching to the valid JSON array form fixes the parsing. --- deployments/aio/community/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/aio/community/Dockerfile b/deployments/aio/community/Dockerfile index 642c9bac6e..901fa4f46f 100644 --- a/deployments/aio/community/Dockerfile +++ b/deployments/aio/community/Dockerfile @@ -59,7 +59,7 @@ RUN mkdir -p /app/logs/access && \ mkdir -p /app/data && \ chmod +x /app/start.sh -VOLUME ['/app/data', '/app/logs'] +VOLUME ["/app/data", "/app/logs"] EXPOSE 80 443