Last active
November 1, 2022 19:43
-
-
Save greenmind-sec/e191481b4fa6ab33b3ed1250e9aaf66a to your computer and use it in GitHub Desktop.
Sh install Docker Debian
This file contains 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
apt-get update | |
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y | |
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add - | |
apt-key fingerprint 0EBFCD88 | |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable" | |
apt-get update | |
apt-get install docker-ce -y | |
apt-get install docker-compose -y | |
groupadd docker | |
usermod -aG docker $USER |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment