From d06c1798997e4c092bd124b15e29a83ad9d9c587 Mon Sep 17 00:00:00 2001 From: "/\\ngel" <25136754+serious-angel@users.noreply.github.com> Date: Mon, 11 May 2026 14:34:04 +0200 Subject: [PATCH] Added basic safety to the repository installation Bash script --- content/manuals/engine/install/ubuntu.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/content/manuals/engine/install/ubuntu.md b/content/manuals/engine/install/ubuntu.md index 38d23463673b..8e291621be42 100644 --- a/content/manuals/engine/install/ubuntu.md +++ b/content/manuals/engine/install/ubuntu.md @@ -126,14 +126,15 @@ Docker from the repository. ```bash # Add Docker's official GPG key: - sudo apt update - sudo apt install ca-certificates curl - sudo install -m 0755 -d /etc/apt/keyrings - sudo curl -fsSL {{% param "download-url-base" %}}/gpg -o /etc/apt/keyrings/docker.asc - sudo chmod a+r /etc/apt/keyrings/docker.asc - - # Add the repository to Apt sources: - sudo tee /etc/apt/sources.list.d/docker.sources <