Created
January 18, 2020 08:07
-
-
Save ZsBT/aba90aad5aeeeb93826eaea3e80a9eda to your computer and use it in GitHub Desktop.
install docker&compose packages on Debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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