-
-
Save botnetdobbs/28f746e0bf00f7f0ca5fb50f92ffdb7d to your computer and use it in GitHub Desktop.
Revisions
-
muhammad-asn renamed this gist
Apr 4, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
DavoedM revised this gist
Apr 3, 2020 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,11 +8,12 @@ sudo apt install -y curl apt-transport-https \ software-properties-common ca-certificates # Install docker. curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - echo "deb [arch=amd64] https://download.docker.com/linux/debian stretch stable" | \ sudo tee /etc/apt/sources.list.d/docker-engine.list sudo apt-get update -y sudo apt-get install -y docker-ce # Run docker. sudo systemctl start docker -
muhammad-asn created this gist
Jun 13, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ #!/bin/sh # From https://www.hiroom2.com/2017/09/24/parrotsec-3-8-docker-engine-en/ set -e # Install dependencies. sudo apt install -y curl apt-transport-https \ software-properties-common ca-certificates # Install docker. curl -fsSL https://yum.dockerproject.org/gpg | sudo apt-key add - echo "deb https://apt.dockerproject.org/repo/ debian-stretch testing" | \ sudo tee /etc/apt/sources.list.d/docker-engine.list sudo apt-get update -y sudo apt-get install -y docker-engine # Run docker. sudo systemctl start docker sudo systemctl enable docker # Add user to docker group for using docker without sudo command. sudo gpasswd -a "${USER}" docker # Reboot sudo reboot