1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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 <nikolas@gnu.org>
This commit is contained in:
nikolas 2015-04-28 13:25:48 -04:00 committed by Nik Nyby
parent dde5ff2872
commit f04837cf80

View file

@ -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