Skip to content

Instantly share code, notes, and snippets.

@ptflp
Last active September 9, 2022 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ptflp/62f62201e8bd0683abdfbed631192db3 to your computer and use it in GitHub Desktop.
Save ptflp/62f62201e8bd0683abdfbed631192db3 to your computer and use it in GitHub Desktop.
docker automate installation sh
#!/bin/bash
sudo apt-get update
sudo service docker stop
sudo apt-get remove -y docker docker-engine docker.io
sudo apt-get -y install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common \
wget
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get -y install docker-ce docker-compose
sudo service docker restart
sudo docker run --rm hello-world
#!/bin/bash
wget -O - https://gist.githubusercontent.com/ptflp/62f62201e8bd0683abdfbed631192db3/raw/docker-install.sh | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment