From 7a5c3dd1a2fe9ecfba9e40dfab7306f775ec5707 Mon Sep 17 00:00:00 2001 From: Luke Nimtz Date: Fri, 6 Jan 2017 04:20:57 -0800 Subject: [PATCH] docker upgrade command fix (#1044) `apt-get upgrade` doesn't take an argument. To upgrade docker specifically would require `apt-get install docker-engine`. --- engine/installation/linux/ubuntulinux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/installation/linux/ubuntulinux.md b/engine/installation/linux/ubuntulinux.md index 39033983f99..6e18d96de26 100644 --- a/engine/installation/linux/ubuntulinux.md +++ b/engine/installation/linux/ubuntulinux.md @@ -596,7 +596,7 @@ updates Docker if a new version is available. ```bash $ sudo apt-get update -$ sudo apt-get upgrade docker-engine +$ sudo apt-get install docker-engine ``` ## Uninstallation