Docker 29 API Changes
Quick fix for the Docker 29 API version increase
In the latest Docker release, version 29, they increased the minimum API version which broken a lot of containers. The best thing to do for now is not update, but if like me you already did, you could either downgrade or just add the following to your docker.service file.
sudo systemctl edit docker.service
Add this part above the line ### Lines below this comment will be discarded:
[Service]
Environment=DOCKER_MIN_API_VERSION=1.24
Save and exit
sudo systemctl restart docker
This will force docker to use the old API version as it was before.