@@ -34,10 +34,11 @@ RHEL versions:
3434
3535### Uninstall old versions
3636
37- Older versions of Docker went by ` docker ` or ` docker-engine ` .
38- Uninstall any such older versions before attempting to install a new version,
39- along with associated dependencies. Also uninstall ` Podman ` and the associated
40- dependencies if installed already:
37+ Before you can install Docker Engine, you need to uninstall any conflicting packages.
38+
39+ Your Linux distribution may provide unofficial Docker packages, which may conflict
40+ with the official packages provided by Docker. You must uninstall these packages
41+ before you install the official version of Docker Engine.
4142
4243``` console
4344$ sudo dnf remove docker \
@@ -92,7 +93,7 @@ $ sudo dnf config-manager --add-repo {{% param "download-url-base" %}}/docker-ce
9293
9394#### Install Docker Engine
9495
95- 1 . Install Docker Engine, containerd, and Docker Compose:
96+ 1 . Install the Docker packages.
9697
9798 {{< tabs >}}
9899 {{< tab name="Latest" >}}
@@ -153,8 +154,7 @@ $ sudo dnf config-manager --add-repo {{% param "download-url-base" %}}/docker-ce
153154 boot your system. If you don't want Docker to start automatically, use `sudo
154155 systemctl start docker` instead.
155156
156- 3 . Verify that the Docker Engine installation is successful by running the
157- ` hello-world ` image.
157+ 3 . Verify that the installation is successful by running the ` hello-world ` image:
158158
159159 ``` console
160160 $ sudo docker run hello-world
@@ -219,8 +219,7 @@ download a new file each time you want to upgrade Docker Engine.
219219 boot your system. If you don't want Docker to start automatically, use `sudo
220220 systemctl start docker` instead.
221221
222- 7 . Verify that the Docker Engine installation is successful by running the
223- ` hello-world ` image.
222+ 7 . Verify that the installation is successful by running the ` hello-world ` image:
224223
225224 ``` console
226225 $ sudo docker run hello-world
0 commit comments