From bc88f8248dda5cc3ac3f34249690d97fc2e41381 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Wed, 25 Jun 2014 15:36:14 +0200 Subject: [PATCH 1/2] Add a step to verify if Docker is working as expected Like in the other installation guides I added a simple test to verify that importing images and starting containers is working. Docker-DCO-1.1-Signed-off-by: Christian Berendt (github: berendt) Upstream-commit: f3ea94a79775b30b7338a3fc99923978b260af28 Component: engine --- components/engine/docs/sources/installation/openSUSE.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/engine/docs/sources/installation/openSUSE.md b/components/engine/docs/sources/installation/openSUSE.md index ce79de2699..2affa81ef1 100644 --- a/components/engine/docs/sources/installation/openSUSE.md +++ b/components/engine/docs/sources/installation/openSUSE.md @@ -47,6 +47,12 @@ Docker daemon. $ sudo usermod -G docker +To verify that everything has worked as expected: + + $ sudo docker run -i -t b1systems/opensuse /bin/bash + +This should download and import the `opensuse` image, and then start `bash` in a container. To exit the container type `exit`. + **Done!** Continue with the [User Guide](/userguide/). From 08986aa6477ee05c64dd430ecb5994c6fdb87abe Mon Sep 17 00:00:00 2001 From: SvenDowideit Date: Mon, 30 Jun 2014 11:46:09 +1000 Subject: [PATCH 2/2] use the official image for now - there's an opensuse image on its way Docker-DCO-1.1-Signed-off-by: SvenDowideit (github: SvenDowideit) Upstream-commit: 24bf8faa99ef7c80aca3ee3a6eac485f74e521ef Component: engine --- components/engine/docs/sources/installation/openSUSE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/engine/docs/sources/installation/openSUSE.md b/components/engine/docs/sources/installation/openSUSE.md index 2affa81ef1..f714790205 100644 --- a/components/engine/docs/sources/installation/openSUSE.md +++ b/components/engine/docs/sources/installation/openSUSE.md @@ -49,9 +49,9 @@ Docker daemon. To verify that everything has worked as expected: - $ sudo docker run -i -t b1systems/opensuse /bin/bash + $ sudo docker run --rm -i -t ubuntu /bin/bash -This should download and import the `opensuse` image, and then start `bash` in a container. To exit the container type `exit`. +This should download and import the `ubuntu` image, and then start `bash` in a container. To exit the container type `exit`. **Done!**