From f6e5496bc3808b8a51ca044a527d645479893ef8 Mon Sep 17 00:00:00 2001 From: Stefan Petter Date: Wed, 25 Nov 2020 20:50:54 +0100 Subject: [PATCH] Applied suggested changes to create /etc/docker folder instead of starting the service The "Set up the Docker daemon" step fails because the initial files have not been created. I copied the step of creating of the /etc/docker/ folder from the CentOS/RHEL instructions to the Ubuntu Instructions --- .../docs/setup/production-environment/container-runtimes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/en/docs/setup/production-environment/container-runtimes.md b/content/en/docs/setup/production-environment/container-runtimes.md index ecaf53c03f..2b61ec5bcd 100644 --- a/content/en/docs/setup/production-environment/container-runtimes.md +++ b/content/en/docs/setup/production-environment/container-runtimes.md @@ -407,6 +407,11 @@ sudo apt-get update && sudo apt-get install -y \ docker-ce-cli=5:19.03.11~3-0~ubuntu-$(lsb_release -cs) ``` +```shell +## Create /etc/docker +sudo mkdir /etc/docker +``` + ```shell # Set up the Docker daemon cat <