aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+
+