aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2026-02-25 14:39:35 +0100
committerChristian Weiske <cweiske@cweiske.de>2026-02-25 14:39:35 +0100
commitaf15e1f5bacced6bf851bcdd14ba4fa3ff48c7f1 (patch)
treec08c902339a15b283a992997ccf2aa081515b711
parent572e779b389eeb91f871aa2979f766e1724ac4ff (diff)
download955-af15e1f5bacced6bf851bcdd14ba4fa3ff48c7f1.tar.gz
955-af15e1f5bacced6bf851bcdd14ba4fa3ff48c7f1.zip
-rw-r--r--README.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index ab63237..63b125a 100644
--- a/README.rst
+++ b/README.rst
@@ -6,3 +6,14 @@ Problem::
Solution::
$ export DOCKER_API_VERSION=1.41
+
+Reason: Debian 12 with docker's own apt repository (https://download.docker.com/linux/debian). ``docker.io`` (from Debian) package version is ``20.10.24+dfsg1-1+deb12u1``, and ``docker-compose-plugin`` (from Docker) got upgraded from ``5.0.1-1~debian.12~bookworm`` to ``5.0.2-1~debian.12~bookworm`` and then ``5.1.0-1~debian.12~bookworm``.
+
+Downgrading/pinning to ``5.0.1`` solved the problem::
+
+ # cat /etc/apt/preferences.d/docker
+ Package: docker-compose-plugin
+ Pin: version 5.0.1*
+ Pin-Priority: 1000
+
+