From 76ead40783f39b8f6f9b3bb2da1ca7aae3b0ff27 Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Fri, 14 Nov 2025 15:55:43 +0100 Subject: [PATCH 1/2] Docker Compose v5 requires buildx Signed-off-by: Nicolas De Loof --- pkg/compose/deb/control | 4 +--- pkg/compose/rpm/docker-compose-plugin.spec | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/pkg/compose/deb/control b/pkg/compose/deb/control index ae2aff64..b3dc96a8 100644 --- a/pkg/compose/deb/control +++ b/pkg/compose/deb/control @@ -11,9 +11,8 @@ Build-Depends: bash, make Package: docker-compose-plugin -Priority: optional Architecture: linux-any -Recommends: docker-buildx-plugin (>= 0.17.0) +Depends: docker-buildx-plugin (>= 0.17.0) Enhances: docker-ce-cli Description: Docker Compose (V2) plugin for the Docker CLI. . @@ -21,4 +20,3 @@ Description: Docker Compose (V2) plugin for the Docker CLI. . The binary can also be run standalone as a direct replacement for Docker Compose V1 ('docker-compose'). -Homepage: https://github.com/docker/compose diff --git a/pkg/compose/rpm/docker-compose-plugin.spec b/pkg/compose/rpm/docker-compose-plugin.spec index 289c860c..037ef368 100644 --- a/pkg/compose/rpm/docker-compose-plugin.spec +++ b/pkg/compose/rpm/docker-compose-plugin.spec @@ -13,7 +13,7 @@ Vendor: Docker Packager: Docker Enhances: docker-ce-cli -Recommends: docker-buildx-plugin >= 0.17.0 +Requires: docker-buildx-plugin >= 0.17.0 BuildRequires: bash BuildRequires: make From 3fdd3405052820de1b06509208260aae2a801a2c Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Sun, 16 Nov 2025 21:37:33 +0100 Subject: [PATCH 2/2] compose: ignore buildx plugin on install during test Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- pkg/compose/verify.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compose/verify.Dockerfile b/pkg/compose/verify.Dockerfile index e8466de5..deb6e9da 100644 --- a/pkg/compose/verify.Dockerfile +++ b/pkg/compose/verify.Dockerfile @@ -49,7 +49,7 @@ RUN --mount=from=bin,target=/build <