diff --git a/content/engine/install/centos.md b/content/engine/install/centos.md index da4874faac..a4e05064d2 100644 --- a/content/engine/install/centos.md +++ b/content/engine/install/centos.md @@ -116,8 +116,8 @@ $ sudo yum-config-manager --add-repo {{% param "download-url-base" %}}/docker-ce ```console $ yum list docker-ce --showduplicates | sort -r - docker-ce.x86_64 3:26.1.3-1.el9 docker-ce-stable - docker-ce.x86_64 3:26.1.2-1.el9 docker-ce-stable + docker-ce.x86_64 3:27.0.3-1.el9 docker-ce-stable + docker-ce.x86_64 3:27.0.2-1.el9 docker-ce-stable <...> ``` @@ -126,7 +126,7 @@ $ sudo yum-config-manager --add-repo {{% param "download-url-base" %}}/docker-ce Install a specific version by its fully qualified package name, which is the package name (`docker-ce`) plus the version string (2nd column), - separated by a hyphen (`-`). For example, `docker-ce-3:26.1.2-1.el9`. + separated by a hyphen (`-`). For example, `docker-ce-3:27.0.3-1.el9`. Replace `` with the desired version and then run the following command to install: diff --git a/content/engine/install/debian.md b/content/engine/install/debian.md index ffef30f3a0..ae6f39c3d2 100644 --- a/content/engine/install/debian.md +++ b/content/engine/install/debian.md @@ -143,15 +143,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:26.1.0-1~debian.12~bookworm - 5:26.0.2-1~debian.12~bookworm + 5:27.0.3-1~debian.12~bookworm + 5:27.0.2-1~debian.12~bookworm ... ``` Select the desired version and install: ```console - $ VERSION_STRING=5:26.1.0-1~debian.12~bookworm + $ VERSION_STRING=5:27.0.3-1~debian.12~bookworm $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ``` diff --git a/content/engine/install/fedora.md b/content/engine/install/fedora.md index 544002cdcc..51f1ac2905 100644 --- a/content/engine/install/fedora.md +++ b/content/engine/install/fedora.md @@ -112,8 +112,8 @@ $ sudo dnf config-manager --add-repo {{% param "download-url-base" %}}/docker-ce ```console $ dnf list docker-ce --showduplicates | sort -r - docker-ce.x86_64 3:26.1.0-1.fc40 docker-ce-stable - docker-ce.x86_64 3:26.0.2-1.fc40 docker-ce-stable + docker-ce.x86_64 3:27.0.3-1.fc40 docker-ce-stable + docker-ce.x86_64 3:27.0.2-1.fc40 docker-ce-stable <...> ``` @@ -122,7 +122,7 @@ $ sudo dnf config-manager --add-repo {{% param "download-url-base" %}}/docker-ce Install a specific version by its fully qualified package name, which is the package name (`docker-ce`) plus the version string (2nd column), - separated by a hyphen (`-`). For example, `docker-ce-3:26.1.0-1.fc40`. + separated by a hyphen (`-`). For example, `docker-ce-3:27.0.3-1.fc40`. Replace `` with the desired version and then run the following command to install: diff --git a/content/engine/install/raspberry-pi-os.md b/content/engine/install/raspberry-pi-os.md index 50cf69f216..85951a130d 100644 --- a/content/engine/install/raspberry-pi-os.md +++ b/content/engine/install/raspberry-pi-os.md @@ -132,15 +132,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:25.0.0-1~raspbian.12~bookworm - 5:24.0.7-1~raspbian.12~bookworm + 5:27.0.3-1~raspbian.12~bookworm + 5:27.0.2-1~raspbian.12~bookworm ... ``` Select the desired version and install: ```console - $ VERSION_STRING=5:25.0.0-1~raspbian.12~bookworm + $ VERSION_STRING=5:27.0.3-1~raspbian.12~bookworm $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ``` diff --git a/content/engine/install/rhel.md b/content/engine/install/rhel.md index 0c67bf5999..f9861e42c0 100644 --- a/content/engine/install/rhel.md +++ b/content/engine/install/rhel.md @@ -128,8 +128,8 @@ $ sudo yum-config-manager --add-repo {{% param "download-url-base" %}}/docker-ce ```console $ yum list docker-ce --showduplicates | sort -r - docker-ce.s390x 3:26.0.2-1.el9 docker-ce-stable - docker-ce.s390x 3:26.0.1-1.el9 docker-ce-stable + docker-ce.x86_64 3:27.0.3-1.el9 docker-ce-stable + docker-ce.x86_64 3:27.0.2-1.el9 docker-ce-stable <...> ``` @@ -138,7 +138,7 @@ $ sudo yum-config-manager --add-repo {{% param "download-url-base" %}}/docker-ce Install a specific version by its fully qualified package name, which is the package name (`docker-ce`) plus the version string (2nd column), - separated by a hyphen (`-`). For example, `docker-ce-3:26.0.1-1.el9`. + separated by a hyphen (`-`). For example, `docker-ce-3:27.0.3-1.el9`. Replace `` with the desired version and then run the following command to install: diff --git a/content/engine/install/ubuntu.md b/content/engine/install/ubuntu.md index f0734cc273..1c68d88b16 100644 --- a/content/engine/install/ubuntu.md +++ b/content/engine/install/ubuntu.md @@ -146,15 +146,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:26.1.0-1~ubuntu.24.04~noble - 5:26.0.2-1~ubuntu.24.04~noble + 5:27.0.3-1~ubuntu.24.04~noble + 5:27.0.2-1~ubuntu.24.04~noble ... ``` Select the desired version and install: ```console - $ VERSION_STRING=5:26.1.0-1~ubuntu.24.04~noble + $ VERSION_STRING=5:27.0.3-1~ubuntu.24.04~noble $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ```