engine: enable docker service after installation on fedora

This commit is contained in:
Jakub T. Jankiewicz 2024-10-30 21:31:19 +01:00 committed by David Karlsson
parent 241d748a37
commit b45343701b
1 changed files with 7 additions and 1 deletions

View File

@ -191,7 +191,13 @@ download a new file each time you want to upgrade Docker Engine.
$ sudo systemctl start docker
```
4. Verify that the Docker Engine installation is successful by running the
4. Make Docker start automatically after reboot.
```console
$ sudo systemctl enable docker
```
5. Verify that the Docker Engine installation is successful by running the
`hello-world` image.
```console