Skip to content

Commit d45768e

Browse files
committed
fedora
1 parent d24440e commit d45768e

File tree

1 file changed

+13
-16
lines changed

1 file changed

+13
-16
lines changed

content/manuals/engine/install/fedora.md

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,24 @@ aliases:
1515
download-url-base: https://download.docker.com/linux/fedora
1616
---
1717

18-
To get started with Docker Engine on Fedora, make sure you
19-
[meet the prerequisites](#prerequisites), and then follow the
20-
[installation steps](#installation-methods).
18+
To get started with Docker Engine on Fedora:
19+
20+
- [Check prerequisites](#prerequisites)
21+
- [Follow the installation steps](#installation-methods)
2122

2223
## Prerequisites
2324

2425
### OS requirements
2526

26-
To install Docker Engine, you need a maintained version of one of the following
27-
Fedora versions:
27+
Docker Engine requires a maintained version of Fedora:
2828

2929
- Fedora 42
3030
- Fedora 41
3131

3232
### Uninstall old versions
3333

34-
Before you can install Docker Engine, you need to uninstall any conflicting packages.
35-
36-
Your Linux distribution may provide unofficial Docker packages, which may conflict
37-
with the official packages provided by Docker. You must uninstall these packages
38-
before you install the official version of Docker Engine.
34+
Uninstall unofficial or conflicting Docker packages before installing Docker Engine.
35+
Remove the following packages if present:
3936

4037
```console
4138
$ sudo dnf remove docker \
@@ -141,7 +138,7 @@ $ sudo dnf-3 config-manager --add-repo {{% param "download-url-base" %}}/docker-
141138
{{< /tab >}}
142139
{{< /tabs >}}
143140

144-
2. Start Docker Engine.
141+
1. Start Docker Engine.
145142

146143
```console
147144
$ sudo systemctl enable --now docker
@@ -151,7 +148,7 @@ $ sudo dnf-3 config-manager --add-repo {{% param "download-url-base" %}}/docker-
151148
boot your system. If you don't want Docker to start automatically, use `sudo
152149
systemctl start docker` instead.
153150

154-
3. Verify that the installation is successful by running the `hello-world` image:
151+
1. Verify that the installation is successful by running the `hello-world` image:
155152

156153
```console
157154
$ sudo docker run hello-world
@@ -180,7 +177,7 @@ download a new file each time you want to upgrade Docker Engine.
180177
and choose your version of Fedora. Then browse to `x86_64/stable/Packages/`
181178
and download the `.rpm` file for the Docker version you want to install.
182179

183-
2. Install Docker Engine, changing the following path to the path where you downloaded
180+
1. Install Docker Engine, changing the following path to the path where you downloaded
184181
the Docker package.
185182

186183
```console
@@ -190,7 +187,7 @@ download a new file each time you want to upgrade Docker Engine.
190187
Docker is installed but not started. The `docker` group is created, but no
191188
users are added to the group.
192189

193-
3. Start Docker Engine.
190+
1. Start Docker Engine.
194191

195192
```console
196193
$ sudo systemctl enable --now docker
@@ -200,7 +197,7 @@ download a new file each time you want to upgrade Docker Engine.
200197
boot your system. If you don't want Docker to start automatically, use `sudo
201198
systemctl start docker` instead.
202199

203-
4. Verify that the installation is successful by running the `hello-world` image:
200+
1. Verify that the installation is successful by running the `hello-world` image:
204201

205202
```console
206203
$ sudo docker run hello-world
@@ -229,7 +226,7 @@ instead of `dnf install`, and point to the new files.
229226
$ sudo dnf remove docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin docker-ce-rootless-extras
230227
```
231228

232-
2. Images, containers, volumes, or custom configuration files on your host
229+
1. Images, containers, volumes, or custom configuration files on your host
233230
aren't automatically removed. To delete all images, containers, and volumes:
234231

235232
```console

0 commit comments

Comments
 (0)