Skip to content

Commit 00b0bf4

Browse files
committed
sles
1 parent 02d9404 commit 00b0bf4

File tree

1 file changed

+15
-22
lines changed
  • content/manuals/engine/install

1 file changed

+15
-22
lines changed

content/manuals/engine/install/sles.md

Lines changed: 15 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -27,29 +27,22 @@ download-url-base: https://download.docker.com/linux/sles
2727
---
2828

2929
> [!NOTE]
30-
>
31-
> The installation instructions on this page refer to packages for SLES on the
32-
> **s390x** architecture (IBM Z). Other architectures, including x86_64, aren't
33-
> supported for SLES.
30+
> These instructions are for SLES on the **s390x** architecture (IBM Z). Other architectures, including x86_64, are not supported for SLES.
3431
35-
To get started with Docker Engine on SLES, make sure you
36-
[meet the prerequisites](#prerequisites), and then follow the
37-
[installation steps](#installation-methods).
32+
To get started with Docker Engine on SLES, first [meet the prerequisites](#prerequisites). Then follow the [installation steps](#installation-methods).
3833

3934
## Prerequisites
4035

4136
### OS requirements
4237

43-
To install Docker Engine, you need a maintained version of one of the following
44-
SLES versions:
38+
You need a maintained version of one of these SLES versions:
4539

4640
- SLES 15-SP4 on s390x (IBM Z)
4741
- SLES 15-SP5 on s390x (IBM Z)
4842

49-
You must enable the [`SCC SUSE`](https://scc.suse.com/packages?name=SUSE%20Linux%20Enterprise%20Server&version=15.5&arch=s390x)
50-
repositories.
43+
Enable the [`SCC SUSE`](https://scc.suse.com/packages?name=SUSE%20Linux%20Enterprise%20Server&version=15.5&arch=s390x) repositories.
5144

52-
You must add the [OpenSUSE `SELinux` repository](https://download.opensuse.org/repositories/security:/SELinux/). This repository is not added by default. Run the following commands to add it:
45+
Add the [OpenSUSE SELinux repository](https://download.opensuse.org/repositories/security:/SELinux/). This repository is not added by default. Run:
5346

5447
```console
5548
$ opensuse_repo="https://download.opensuse.org/repositories/security:/SELinux/openSUSE_Factory/security:SELinux.repo"
@@ -58,7 +51,7 @@ $ sudo zypper addrepo $opensuse_repo
5851

5952
### Uninstall old versions
6053

61-
Before you can install Docker Engine, you need to uninstall any conflicting packages.
54+
Uninstall any conflicting packages before you install Docker Engine.
6255

6356
Your Linux distribution may provide unofficial Docker packages, which may conflict
6457
with the official packages provided by Docker. You must uninstall these packages
@@ -76,7 +69,7 @@ $ sudo zypper remove docker \
7669
runc
7770
```
7871

79-
`zypper` might report that you have none of these packages installed.
72+
`zypper` might report that none of these packages are installed.
8073

8174
Images, containers, volumes, and networks stored in `/var/lib/docker/` aren't
8275
automatically removed when you uninstall Docker.
@@ -139,7 +132,7 @@ $ sudo zypper addrepo {{% param "download-url-base" %}}/docker-ce.repo
139132

140133
```console
141134
$ sudo zypper search -s --match-exact docker-ce | sort -r
142-
135+
143136
v | docker-ce | package | 3:{{% param "docker_ce_version" %}}-1 | s390x | Docker CE Stable - s390x
144137
v | docker-ce | package | 3:{{% param "docker_ce_version_prev" %}}-1 | s390x | Docker CE Stable - s390x
145138
```
@@ -160,11 +153,11 @@ $ sudo zypper addrepo {{% param "download-url-base" %}}/docker-ce.repo
160153

161154
This command installs Docker, but it doesn't start Docker. It also creates a
162155
`docker` group, however, it doesn't add any users to the group by default.
163-
156+
164157
{{< /tab >}}
165158
{{< /tabs >}}
166159

167-
2. Start Docker Engine.
160+
1. Start Docker Engine.
168161

169162
```console
170163
$ sudo systemctl enable --now docker
@@ -174,7 +167,7 @@ $ sudo zypper addrepo {{% param "download-url-base" %}}/docker-ce.repo
174167
boot your system. If you don't want Docker to start automatically, use `sudo
175168
systemctl start docker` instead.
176169

177-
3. Verify that the installation is successful by running the `hello-world` image:
170+
1. Verify that the installation is successful by running the `hello-world` image:
178171

179172
```console
180173
$ sudo docker run hello-world
@@ -203,7 +196,7 @@ download a new file each time you want to upgrade Docker Engine.
203196
and choose your version of SLES. Then browse to `s390x/stable/Packages/`
204197
and download the `.rpm` file for the Docker version you want to install.
205198

206-
2. Install Docker Engine, changing the following path to the path where you downloaded
199+
1. Install Docker Engine, changing the following path to the path where you downloaded
207200
the Docker package.
208201

209202
```console
@@ -213,7 +206,7 @@ download a new file each time you want to upgrade Docker Engine.
213206
Docker is installed but not started. The `docker` group is created, but no
214207
users are added to the group.
215208

216-
3. Start Docker Engine.
209+
1. Start Docker Engine.
217210

218211
```console
219212
$ sudo systemctl enable --now docker
@@ -223,7 +216,7 @@ download a new file each time you want to upgrade Docker Engine.
223216
boot your system. If you don't want Docker to start automatically, use `sudo
224217
systemctl start docker` instead.
225218

226-
4. Verify that the installation is successful by running the `hello-world` image:
219+
1. Verify that the installation is successful by running the `hello-world` image:
227220

228221
```console
229222
$ sudo docker run hello-world
@@ -252,7 +245,7 @@ instead of `zypper -y install`, and point to the new files.
252245
$ sudo zypper remove docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin docker-ce-rootless-extras
253246
```
254247

255-
2. Images, containers, volumes, or custom configuration files on your host
248+
1. Images, containers, volumes, or custom configuration files on your host
256249
aren't automatically removed. To delete all images, containers, and volumes:
257250

258251
```console

0 commit comments

Comments
 (0)