From 7dcd7756af2c60dc761f2a5621043af8facee000 Mon Sep 17 00:00:00 2001 From: Peter Smit Date: Fri, 17 Jan 2025 10:25:39 +0100 Subject: [PATCH] Actually really NOW actually for real truly fix docker compose in updater --- updater/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/updater/Dockerfile b/updater/Dockerfile index 92b16e3..62f5716 100644 --- a/updater/Dockerfile +++ b/updater/Dockerfile @@ -19,6 +19,9 @@ RUN apt-get update && \ apt-get install -y git docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin && \ rm -rf /var/lib/apt/lists/* +# Add user to the docker group +RUN usermod -aG docker www-data + # Copy the PHP file to the Apache document root COPY webhook.php /var/www/html/index.php