From cf7bff250d1d8c025e1a1c51973606f1ce602046 Mon Sep 17 00:00:00 2001 From: David Karlsson Date: Fri, 19 May 2023 17:44:44 +0200 Subject: [PATCH] bump engine version in examples Signed-off-by: David Karlsson --- engine/api/index.md | 28 ++++++++++++++-------------- engine/install/centos.md | 6 +++--- engine/install/debian.md | 6 +++--- engine/install/fedora.md | 6 +++--- engine/install/raspbian.md | 6 +++--- engine/install/rhel.md | 6 +++--- engine/install/sles.md | 6 +++--- engine/install/ubuntu.md | 6 +++--- 8 files changed, 35 insertions(+), 35 deletions(-) diff --git a/engine/api/index.md b/engine/api/index.md index 13fd55a359..647cb07e32 100644 --- a/engine/api/index.md +++ b/engine/api/index.md @@ -72,24 +72,24 @@ To see the highest version of the API your Docker daemon and client support, use ```console $ docker version - Client: Docker Engine - Community - Version: 23.0.5 - API version: 1.42 - Go version: go1.19.8 - Git commit: bc4487a - Built: Wed Apr 26 16:21:22 2023 - OS/Arch: linux/amd64 + Version: 24.0.0 + API version: 1.43 + Go version: go1.20.4 + Git commit: 98fdcd7 + Built: Mon May 15 18:48:45 2023 + OS/Arch: linux/arm64 Context: default -Server: Docker Desktop 4.19.0 (106363) +Server: Docker Engine - Community Engine: - Version: 23.0.5 - API version: 1.42 (minimum version 1.12) - Go version: go1.19.8 - Git commit: 94d3ad6 - Built: Wed Apr 26 16:18:20 2023 - OS/Arch: linux/amd64 + Version: 24.0.0 + API version: 1.43 (minimum version 1.12) + Go version: go1.20.4 + Git commit: 1331b8c + Built: Mon May 15 18:48:45 2023 + OS/Arch: linux/arm64 + Experimental: false ... ``` diff --git a/engine/install/centos.md b/engine/install/centos.md index c33793e68f..38511b1253 100644 --- a/engine/install/centos.md +++ b/engine/install/centos.md @@ -123,8 +123,8 @@ $ sudo yum-config-manager --add-repo {{ download-url-base }}/docker-ce.repo ```console $ yum list docker-ce --showduplicates | sort -r - docker-ce.x86_64 3:23.0.5-1.el8 docker-ce-stable - docker-ce.x86_64 3:23.0.4-1.el8 docker-ce-stable + docker-ce.x86_64 3:24.0.0-1.el8 docker-ce-stable + docker-ce.x86_64 3:23.0.6-1.el8 docker-ce-stable <...> ``` @@ -133,7 +133,7 @@ $ sudo yum-config-manager --add-repo {{ download-url-base }}/docker-ce.repo 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:23.0.5-1.el8`. + separated by a hyphen (`-`). For example, `docker-ce-3:24.0.0-1.el8`. Replace `` with the desired version and then run the following command to install: diff --git a/engine/install/debian.md b/engine/install/debian.md index e042886d35..a0973cdcea 100644 --- a/engine/install/debian.md +++ b/engine/install/debian.md @@ -132,15 +132,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:23.0.5-1~debian.11~bullseye - 5:23.0.4-1~debian.11~bullseye + 5:24.0.0-1~debian.11~bullseye + 5:23.0.6-1~debian.11~bullseye <...> ``` Select the desired version and install: ```console - $ VERSION_STRING=5:23.0.5-1~debian.11~bullseye + $ VERSION_STRING=5:24.0.0-1~debian.11~bullseye $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ``` diff --git a/engine/install/fedora.md b/engine/install/fedora.md index d29c670cc8..cd043cd3b6 100644 --- a/engine/install/fedora.md +++ b/engine/install/fedora.md @@ -117,8 +117,8 @@ $ sudo dnf config-manager --add-repo {{ download-url-base }}/docker-ce.repo ```console $ dnf list docker-ce --showduplicates | sort -r - docker-ce.x86_64 3:23.0.5-1.fc37 docker-ce-stable - docker-ce.x86_64 3:23.0.4-1.fc37 docker-ce-stable + docker-ce.x86_64 3:24.0.0-1.fc37 docker-ce-stable + docker-ce.x86_64 3:23.0.6-1.fc37 docker-ce-stable <...> ``` @@ -127,7 +127,7 @@ $ sudo dnf config-manager --add-repo {{ download-url-base }}/docker-ce.repo 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:23.0.5-1.fc37`. + separated by a hyphen (`-`). For example, `docker-ce-3:24.0.0-1.fc37`. Replace `` with the desired version and then run the following command to install: diff --git a/engine/install/raspbian.md b/engine/install/raspbian.md index 0dd729a789..1b21e9e6bd 100644 --- a/engine/install/raspbian.md +++ b/engine/install/raspbian.md @@ -130,15 +130,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:23.0.5-1~raspbian.11~bullseye - 5:23.0.4-1~raspbian.11~bullseye + 5:24.0.0-1~raspbian.11~bullseye + 5:23.0.6-1~raspbian.11~bullseye <...> ``` Select the desired version and install: ```console - $ VERSION_STRING=5:23.0.5-1~raspbian.11~bullseye + $ VERSION_STRING=5:24.0.0-1~raspbian.11~bullseye $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ``` diff --git a/engine/install/rhel.md b/engine/install/rhel.md index a4764b4d63..d19d8c6acf 100644 --- a/engine/install/rhel.md +++ b/engine/install/rhel.md @@ -128,8 +128,8 @@ $ sudo yum-config-manager --add-repo {{ download-url-base }}/docker-ce.repo ```console $ yum list docker-ce --showduplicates | sort -r - docker-ce.s390x 3:23.0.5-1.el8 docker-ce-stable - docker-ce.s390x 3:23.0.4-1.el8 docker-ce-stable + docker-ce.s390x 3:24.0.0-1.el8 docker-ce-stable + docker-ce.s390x 3:23.0.6-1.el8 docker-ce-stable <...> ``` @@ -138,7 +138,7 @@ $ sudo yum-config-manager --add-repo {{ download-url-base }}/docker-ce.repo 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:23.0.5-1.el8`. + separated by a hyphen (`-`). For example, `docker-ce-3:24.0.0-1.el8`. Replace `` with the desired version and then run the following command to install: diff --git a/engine/install/sles.md b/engine/install/sles.md index eb58ed25f6..da4a98b793 100644 --- a/engine/install/sles.md +++ b/engine/install/sles.md @@ -150,8 +150,8 @@ $ sudo zypper addrepo {{ download-url-base }}/docker-ce.repo ```console $ sudo zypper search -s --match-exact docker-ce | sort -r - v | docker-ce | package | 3:23.0.5-3 | s390x | Docker CE Stable - s390x - v | docker-ce | package | 3:23.0.4-3 | s390x | Docker CE Stable - s390x + v | docker-ce | package | 3:24.0.0-3 | s390x | Docker CE Stable - s390x + v | docker-ce | package | 3:23.0.6-3 | s390x | Docker CE Stable - s390x ``` The list returned depends on which repositories are enabled, and is specific @@ -159,7 +159,7 @@ $ sudo zypper addrepo {{ download-url-base }}/docker-ce.repo 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:23.0.5`. + separated by a hyphen (`-`). For example, `docker-ce-3:24.0.0`. Replace `` with the desired version and then run the following command to install: diff --git a/engine/install/ubuntu.md b/engine/install/ubuntu.md index cfde5054f8..0fb12170f0 100644 --- a/engine/install/ubuntu.md +++ b/engine/install/ubuntu.md @@ -139,15 +139,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:23.0.5-1~ubuntu.22.04~jammy - 5:23.0.4-1~ubuntu.22.04~jammy + 5:24.0.0-1~ubuntu.22.04~jammy + 5:23.0.6-1~ubuntu.22.04~jammy <...> ``` Select the desired version and install: ```console - $ VERSION_STRING=5:23.0.5-1~ubuntu.22.04~jammy + $ VERSION_STRING=5:24.0.0-1~ubuntu.22.04~jammy $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ```