From a3ca24d9c916cc7193fc3c462edf99be40ab915f Mon Sep 17 00:00:00 2001 From: Ikbel Taleb Hassan Date: Fri, 22 Nov 2024 17:32:05 +0000 Subject: [PATCH] GITBOOK-96: Ikbel's Nov 22 changes --- ...tting-up-docker-for-development-and-production.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/developer-guide/setting-up-docker-for-development-and-production.md b/docs/developer-guide/setting-up-docker-for-development-and-production.md index 0e7963ce..96d730f1 100644 --- a/docs/developer-guide/setting-up-docker-for-development-and-production.md +++ b/docs/developer-guide/setting-up-docker-for-development-and-production.md @@ -17,12 +17,12 @@ The following is an example on how to install Docker on a Ubuntu machine. If you sudo chmod a+r /etc/apt/keyrings/docker.asc # Add the repository to Apt sources: - echo - \"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ - $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ - sudo tee /etc/apt/sources.list.d/docker.list > /dev/null - - sudo apt-get update +echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ +$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ +sudo tee /etc/apt/sources.list.d/docker.list > /dev/null + +# Update the system: +sudo apt-get update ``` 2. Install Docker Community Edition: