From 5351d70c432733cc31771deb0b4f853c16714111 Mon Sep 17 00:00:00 2001 From: Reinaldo Assis Date: Sun, 14 Jun 2026 10:49:48 -0300 Subject: [PATCH] Add 'sudo apt update' before Docker installation Updated installation instructions for Docker on Debian to include 'sudo apt update' command. This was necessary in my installation (Debian 13 XFCE), and won't hurt the installation process. --- content/manuals/engine/install/debian.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/manuals/engine/install/debian.md b/content/manuals/engine/install/debian.md index 5ddc7d1f131c..84d6aa13c5da 100644 --- a/content/manuals/engine/install/debian.md +++ b/content/manuals/engine/install/debian.md @@ -148,8 +148,9 @@ Docker from the repository. To install the latest version, run: - ```console - $ sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin + ```bash + sudo apt update + sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin ``` {{< /tab >}}