From 02b8e67e542cdfbe77ad9e499ec06ac3af4eaa75 Mon Sep 17 00:00:00 2001 From: Kirill Kolyshkin Date: Thu, 16 May 2019 18:42:10 -0700 Subject: [PATCH] ubuntu.md: remove old docker-ce-cli (#8665) I hit the following error when "upgrading" docker-ce 18.09 to docker-ee 17.06: > dpkg: error processing archive /var/cache/apt/archives/docker-ee_3%3a17.06.2~ee~19~3-0~ubuntu_amd64.deb (--unpack): trying to overwrite '/usr/share/fish/vendor_completions.d/docker.fish', which is also in package docker-ce-cli 5:18.09.4~2.1.rc1-0~ubuntu-xenial This commit adds `docker-ce-cli` to the list in "uninstall old packages" to fix this. --- install/linux/docker-ee/ubuntu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/linux/docker-ee/ubuntu.md b/install/linux/docker-ee/ubuntu.md index 979220fc50..dae6557ba2 100644 --- a/install/linux/docker-ee/ubuntu.md +++ b/install/linux/docker-ee/ubuntu.md @@ -47,7 +47,7 @@ Older versions of Docker were called `docker` or `docker-engine`. In addition, if you are upgrading from Docker CE to Docker EE, remove the Docker CE package. ```bash -$ sudo apt-get remove docker docker-engine docker-ce docker.io +$ sudo apt-get remove docker docker-engine docker-ce docker-ce-cli docker.io ``` It's OK if `apt-get` reports that none of these packages are installed.