From 8ae601dc052b3a023ba535133ef7d97329273c84 Mon Sep 17 00:00:00 2001 From: Peter Smit Date: Thu, 16 Jan 2025 16:57:46 +0100 Subject: [PATCH] Fix docker compose in updater --- updater/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updater/Dockerfile b/updater/Dockerfile index 4d9942c..6c351df 100644 --- a/updater/Dockerfile +++ b/updater/Dockerfile @@ -3,7 +3,7 @@ FROM php:8.1-apache # Install git and docker-compose RUN apt-get update && \ - apt-get install -y git docker-compose && \ + apt-get install -y git docker-compose-plugin && \ rm -rf /var/lib/apt/lists/* # Copy the PHP file to the Apache document root