Installation der Docker Engine auf einem Debian 13 Trixie System. Im ersten Teil die Installation des Debian Servers unter Proxmox mit UEFI Boot.
Die Befehle für die Installation von Docker zum Copy&Paste:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
Hinweis:
Der Befehl „sudo“ ist bei der Minimalversion von Debian Trixie nicht vorinstalliert. Er muss also vorher mit apt install sudo als root hinzugefügt werden.

Die originale Installationsanweisung des Hersteller finden Sie hier.