From a12a781b5ea905271f67bbd533790ad55e82df90 Mon Sep 17 00:00:00 2001 From: Jenny Gebske Date: Thu, 6 Aug 2015 13:41:33 +0200 Subject: [PATCH 1/2] [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 --- docs/installation/ubuntulinux.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/installation/ubuntulinux.md b/docs/installation/ubuntulinux.md index 0e632bde2b..6bcf222fa0 100644 --- a/docs/installation/ubuntulinux.md +++ b/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 From ffc8d4e204b3639a76182e12d27f110986fd79bb Mon Sep 17 00:00:00 2001 From: Jenny Gebske Date: Thu, 3 Sep 2015 22:02:17 +0200 Subject: [PATCH 2/2] [doc] Rephrase Ubuntu installation Signed-off-by: Jenny Gebske --- docs/installation/ubuntulinux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/ubuntulinux.md b/docs/installation/ubuntulinux.md index 6bcf222fa0..17d66689f2 100644 --- a/docs/installation/ubuntulinux.md +++ b/docs/installation/ubuntulinux.md @@ -127,7 +127,7 @@ install Docker using the following: > > $ wget -qO- https://get.docker.com/gpg | sudo apt-key add - -4. Start `docker`. +4. Start the `docker` daemon. $ sudo service docker start