docker compose 2.32 breaking doodba #640
Unanswered
ap-wtioit
asked this question in
Show and tell
Replies: 3 comments 2 replies
-
downgraded our servers with ansible: ansible -m shell -a "apt install -y --allow-downgrades docker-compose-plugin=\$(apt-cache madison docker-compose-plugin | grep -v '2.32.' | head -n 1 | cut -d' ' -f3)" build_servers --become |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi Andreas, thank you for the heads-up. We are currently using Docker Compose v2.29, so it’s not causing any issues for us at the moment. However, we appreciate the notice and will keep an eye on the bug to avoid updating until it’s resolved. |
Beta Was this translation helpful? Give feedback.
1 reply
-
It seems they fixed the issue a few minutes ago. compose-spec/compose-go#721 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Heads up before christmas as this might not be fixed in time
See: docker/compose#12402
Currently the way we use
extends:
anddepends_on:
is broken in docker compose 2.32. Preventing the startup of services that odoo depends on.To downgrade docker compose on debian(ish):
apt-cache madison docker-compose-plugin
should give something like
sudo apt install docker-compose-plugin=2.31.0-1~ubuntu.24.04~noble
pick a non 2.23 versionBeta Was this translation helpful? Give feedback.
All reactions