From cbbef16eb2b0d183448161d5b927cca1fa021ac2 Mon Sep 17 00:00:00 2001 From: hzoppetti Date: Mon, 20 May 2019 09:08:30 -0400 Subject: [PATCH 1/2] added note for Ubuntu 19.04 for edge/test repo --- docs/applications/containers/install-docker-ce/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/applications/containers/install-docker-ce/index.md b/docs/applications/containers/install-docker-ce/index.md index c19b701de78..d8092145c7d 100644 --- a/docs/applications/containers/install-docker-ce/index.md +++ b/docs/applications/containers/install-docker-ce/index.md @@ -47,6 +47,12 @@ sub 4096R/F273FCD8 2017-02-22 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" + {{< note >}} +For Ubutuntu 19.04 if you get an `E: Package 'docker-ce' has no installation candidate` error this is because the stable version of docker for is not yet available. Therefore, you will need to use the edge / test repository. +{{< /note >}} + + sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable edge test" + 6. Update your package index and install Docker CE: sudo apt update From 568bdbeaf98f48bcf361ee3257a489a743f3dcde Mon Sep 17 00:00:00 2001 From: Angel Date: Tue, 4 Jun 2019 14:14:08 -0400 Subject: [PATCH 2/2] fixed typo --- docs/applications/containers/install-docker-ce/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/applications/containers/install-docker-ce/index.md b/docs/applications/containers/install-docker-ce/index.md index d8092145c7d..4913f76e6ed 100644 --- a/docs/applications/containers/install-docker-ce/index.md +++ b/docs/applications/containers/install-docker-ce/index.md @@ -48,7 +48,7 @@ sub 4096R/F273FCD8 2017-02-22 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" {{< note >}} -For Ubutuntu 19.04 if you get an `E: Package 'docker-ce' has no installation candidate` error this is because the stable version of docker for is not yet available. Therefore, you will need to use the edge / test repository. +For Ubuntu 19.04 if you get an `E: Package 'docker-ce' has no installation candidate` error this is because the stable version of docker for is not yet available. Therefore, you will need to use the edge / test repository. {{< /note >}} sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable edge test"