From 0d2762c0755995f6b98b00215fa025ac15c3d4f2 Mon Sep 17 00:00:00 2001 From: nikolas Date: Tue, 28 Apr 2015 13:25:48 -0400 Subject: [PATCH] Remove incorrect option in docker install command The `-N` option is not compatible with the `-O` option of wget (see the man page). The example command now matches the example in the script on http://get.docker.com/. Signed-off-by: Nik Nyby Upstream-commit: f04837cf803583dfeb4dcd8311e4e5ef8764c37c Component: engine --- components/engine/docs/sources/installation/ubuntulinux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/docs/sources/installation/ubuntulinux.md b/components/engine/docs/sources/installation/ubuntulinux.md index 75b3c9fb68..6c854997fc 100644 --- a/components/engine/docs/sources/installation/ubuntulinux.md +++ b/components/engine/docs/sources/installation/ubuntulinux.md @@ -308,5 +308,5 @@ NetworkManager (this might slow your network). To install the latest version of Docker, use the standard `-N` flag with `wget`: - $ wget -N -qO- https://get.docker.com/ | sh + $ wget -qO- https://get.docker.com/ | sh