diff --git a/engine/install/sles.md b/engine/install/sles.md index a0bbc3248a..eb58ed25f6 100644 --- a/engine/install/sles.md +++ b/engine/install/sles.md @@ -119,8 +119,17 @@ $ sudo zypper addrepo {{ download-url-base }}/docker-ce.repo #### Install Docker Engine -1. Install the _latest version_ of Docker Engine, containerd, and Docker Compose - or go to the next step to install a specific version: +1. Install Docker Engine, containerd, and Docker Compose: + + +
+
+
+ + To install the latest version, run: ```console $ sudo zypper install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin @@ -132,11 +141,11 @@ $ sudo zypper addrepo {{ download-url-base }}/docker-ce.repo This command installs Docker, but it doesn't start Docker. It also creates a `docker` group, however, it doesn't add any users to the group by default. -2. To install a _specific version_ of Docker Engine, list the available versions - in the repo, then select and install: +
+
- a. List and sort the versions available in your repo. This example sorts - results by version number, highest to lowest, and is truncated: + To install a specific version, start by listing the available versions in + the repository: ```console $ sudo zypper search -s --match-exact docker-ce | sort -r @@ -148,9 +157,12 @@ $ sudo zypper addrepo {{ download-url-base }}/docker-ce.repo The list returned depends on which repositories are enabled, and is specific to your version of SLES. - b. Install a specific version by its fully qualified package name, which is - the package name (`docker-ce`) plus the version string (fourth column), - separated by a hyphen (`-`). For example, `docker-ce-3:23.0.5`. + 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`. + + Replace `` with the desired version and then run the following + command to install: ```console $ sudo zypper install docker-ce- docker-ce-cli- containerd.io docker-buildx-plugin docker-compose-plugin @@ -159,13 +171,17 @@ $ sudo zypper addrepo {{ download-url-base }}/docker-ce.repo This command installs Docker, but it doesn't start Docker. It also creates a `docker` group, however, it doesn't add any users to the group by default. -3. Start Docker. +
+
+
+ +2. Start Docker. ```console $ sudo systemctl start docker ``` -4. Verify that the Docker Engine installation is successful by running the +3. Verify that the Docker Engine installation is successful by running the `hello-world` image. ```console