Skip to content

Instantly share code, notes, and snippets.

@greenmind-sec
Last active November 1, 2022 19:43
Show Gist options
  • Save greenmind-sec/e191481b4fa6ab33b3ed1250e9aaf66a to your computer and use it in GitHub Desktop.
Save greenmind-sec/e191481b4fa6ab33b3ed1250e9aaf66a to your computer and use it in GitHub Desktop.
Sh install Docker Debian
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