Created
February 1, 2021 07:44
-
-
Save dnaprawa/66b9ae5cb7e6b110f2e64bef3f2359ff to your computer and use it in GitHub Desktop.
Revisions
-
dnaprawa created this gist
Feb 1, 2021 .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,18 @@ Create a .sh file - eg. `docker-install.sh` and paste following: ```sh #!/bin/bash sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common curl -fsSL get.docker.com -o get-docker.sh sudo sh get-docker.sh sudo usermod -aG docker $USER sudo systemctl enable docker sudo curl -L https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m) -o /usr/bin/docker-compose sudo chmod +x /usr/bin/docker-compose ```` Run `sudo docker-install.sh` script