Skip to content

Instantly share code, notes, and snippets.

@ZsBT
Created January 18, 2020 08:07
Show Gist options
  • Save ZsBT/aba90aad5aeeeb93826eaea3e80a9eda to your computer and use it in GitHub Desktop.
Save ZsBT/aba90aad5aeeeb93826eaea3e80a9eda to your computer and use it in GitHub Desktop.
install docker&compose packages on Debian
#!/bin/sh
sudo apt -y install apt-transport-https ca-certificates curl gnupg2 software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
sudo add-apt-repository -y \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable"
sudo apt update
sudo apt -y install docker-ce docker-ce-cli docker-compose containerd.io
sudo usermod -a -G docker $USER
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment