Skip to content

Instantly share code, notes, and snippets.

@konradish
Created November 13, 2021 23:59
Show Gist options
  • Save konradish/1f553e8c283cd0a03cf6534d9920f3aa to your computer and use it in GitHub Desktop.
Save konradish/1f553e8c283cd0a03cf6534d9920f3aa to your computer and use it in GitHub Desktop.
Debian installer for Docker
#!/bin/bash
apt install -y ca-certificates curl gnupg lsb-release
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian \
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt update
apt install -y docker-ce-cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment