Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions content/manuals/engine/install/fedora.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,17 @@ $ sudo dnf config-manager addrepo --from-repofile {{% param "download-url-base"
boot your system. If you don't want Docker to start automatically, use `sudo
systemctl start docker` instead.

> [!NOTE]
>
> If the Docker service fails to start and `journalctl -u docker`
> shows `failed to find iptables`, point the `iptables` command to
> `iptables-nft` using `alternatives` and restart the service:
>
> ```console
> $ sudo alternatives --set iptables /usr/bin/iptables-nft
> $ sudo systemctl restart docker
> ```

3. Verify that the installation is successful by running the `hello-world` image:

```console
Expand Down Expand Up @@ -199,6 +210,17 @@ download a new file each time you want to upgrade Docker Engine.
boot your system. If you don't want Docker to start automatically, use `sudo
systemctl start docker` instead.

> [!NOTE]
>
> If the Docker service fails to start and `journalctl -u docker`
> shows `failed to find iptables`, point the `iptables` command to
> `iptables-nft` using `alternatives` and restart the service:
>
> ```console
> $ sudo alternatives --set iptables /usr/bin/iptables-nft
> $ sudo systemctl restart docker
> ```

4. Verify that the installation is successful by running the `hello-world` image:

```console
Expand Down