From cef79ffbbcc2178c84775786d8b0bfce89fb285d Mon Sep 17 00:00:00 2001 From: astarte75 Date: Sat, 16 May 2026 20:22:15 +0200 Subject: [PATCH] fix(aio): use JSON array double quotes in VOLUME instruction 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 642c9bac6e9..901fa4f46ff 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