From b109743ad237b2f9827e438750660a53da3e6c9d Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 7 Feb 2023 15:45:05 +0100 Subject: [PATCH] engine/install/ubuntu: update instructions to match debian variant Incorporate the changes made in the debian variant from; - 6d8b08171c734ff66a277183c6b8fd4a72fb1fab - 37ae6721930ee3d96a6235b2d94920518ce14383 Signed-off-by: Sebastiaan van Stijn --- engine/install/ubuntu.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/install/ubuntu.md b/engine/install/ubuntu.md index 8c563d3cac..3533073b56 100644 --- a/engine/install/ubuntu.md +++ b/engine/install/ubuntu.md @@ -95,7 +95,7 @@ Docker from the repository. 2. Add Docker's official GPG key: ```console - $ sudo mkdir -p /etc/apt/keyrings + $ sudo mkdir -m 0755 -p /etc/apt/keyrings $ curl -fsSL {{ download-url-base }}/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg ``` @@ -232,6 +232,7 @@ download a new file each time you want to upgrade Docker Engine. `hello-world` image: ```console + $ sudo service docker start $ sudo docker run hello-world ```