Update Docker version on Ubuntu to a current version
Daniel Nashed – 24 August 2024 07:55:14
Docker and Podman are bundled on most Linux distributions.
But not all distributions have an up to date Docker version.
The latest Ubuntu 24.04 LTS (Noble Numbat) comes with an older Docker version.
Current included version:
Docker 24.0.7
Latest version:
Docker 27.1.2
You find the official Docker install instructions for each platform on the Docker homepage
https://docs.docker.com/engine/install/ubuntu/
There is a convenience script to install the right version automatically.
curl -fsSL https://get.docker.com | bash -
Current Docker issue on Ubuntu with 24.0.7 (missing term signals)
I ran into an issue yesterday, which went away when updating to Docker 27.1.2.
The Domino server in the container didn't shut down any more.
It turned out the Docker daemon did not send term signals to the container and stopped the container without waiting for shutdown.
- Comments [0]