Skip to content

Instantly share code, notes, and snippets.

@CN-CODEGOD
Created June 7, 2026 15:33
Show Gist options
  • Select an option

  • Save CN-CODEGOD/294c6272dd9dd2e64c1b7474bd2bef90 to your computer and use it in GitHub Desktop.

Select an option

Save CN-CODEGOD/294c6272dd9dd2e64c1b7474bd2bef90 to your computer and use it in GitHub Desktop.
install docker on debian
# 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 https://download.docker.com/linux/debian/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 <<EOF
Types: deb
URIs: https://download.docker.com/linux/debian
Suites: $(. /etc/os-release && echo "$VERSION_CODENAME")
Components: stable
Architectures: $(dpkg --print-architecture)
Signed-By: /etc/apt/keyrings/docker.asc
EOF
sudo apt update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment