From 862ded3165114285135091b23f2626d7b6eeef3f Mon Sep 17 00:00:00 2001 From: firfin Date: Tue, 17 Dec 2024 20:10:04 +0100 Subject: [PATCH] Update ubuntu.md Instruction did not mention having to start the docker service before testing 'hello world'. Following the instruction literally leads to confusing errors. --- content/manuals/engine/install/ubuntu.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/manuals/engine/install/ubuntu.md b/content/manuals/engine/install/ubuntu.md index ae89082b26d..5c4bdea3924 100644 --- a/content/manuals/engine/install/ubuntu.md +++ b/content/manuals/engine/install/ubuntu.md @@ -176,6 +176,7 @@ Docker from the repository. 3. Verify that the installation is successful by running the `hello-world` image: ```console + $ sudo service docker start $ sudo docker run hello-world ```