From 6cab088e9896ec50a477db4a91705694ee45f2d6 Mon Sep 17 00:00:00 2001 From: Jenny Gebske Date: Thu, 6 Aug 2015 13:41:33 +0200 Subject: [PATCH] [docs] Add instruction to start docker on Ubuntu I just tried the installation but docker didn't start automatically. So I had to execute the newly added command in order to get the hello-world verification running. Signed-off-by: Jenny Gebske Upstream-commit: a12a781b5ea905271f67bbd533790ad55e82df90 Component: engine --- components/engine/docs/installation/ubuntulinux.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/engine/docs/installation/ubuntulinux.md b/components/engine/docs/installation/ubuntulinux.md index 0e632bde2b..6bcf222fa0 100644 --- a/components/engine/docs/installation/ubuntulinux.md +++ b/components/engine/docs/installation/ubuntulinux.md @@ -127,7 +127,11 @@ install Docker using the following: > > $ wget -qO- https://get.docker.com/gpg | sudo apt-key add - -4. Verify `docker` is installed correctly. +4. Start `docker`. + + $ sudo service docker start + +5. Verify `docker` is installed correctly. $ sudo docker run hello-world