Last active
August 9, 2023 09:04
-
-
Save spara/400c0e8e156bb985de7f85910cd44e7e to your computer and use it in GitHub Desktop.
Revisions
-
spara renamed this gist
Jun 12, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
spara revised this gist
Jun 12, 2017 . 1 changed file with 1 addition and 1 deletion.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 @@ -34,7 +34,7 @@ sudo dpkg -i docker-ce_17.05.0~ce-0~ubuntu-xenial_amd64.deb ## Install Compose ``` sudo curl -fSL http://github.com/docker/compose/releases/download/1.13.0/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose ``` -
spara revised this gist
Jun 12, 2017 . 1 changed file with 1 addition and 1 deletion.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 @@ -19,7 +19,7 @@ sudo apt-get install \ ## Install Docker Download Docker .deb file: ``` curl -O https://download.docker.com/linux/ubuntu/dists/xenial/pool/edge/amd64/docker-ce_17.05.0~ce-0~ubuntu-xenial_amd64.deb -
spara created this gist
Jun 12, 2017 .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,40 @@ # Installing Docker CE Edge for Ubuntu Linux ## Remove previous versions of Docker and Compose ``` sudo apt-get purge docker-compose sudo apt-get purge docker-ce ``` ## Install dependencies ``` sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common ``` ## Install Docker Download Docker: ``` curl -O https://download.docker.com/linux/ubuntu/dists/xenial/pool/edge/amd64/docker-ce_17.05.0~ce-0~ubuntu-xenial_amd64.deb ``` Install Docker: ``` sudo dpkg -i docker-ce_17.05.0~ce-0~ubuntu-xenial_amd64.deb ``` ## Install Compose ``` sudo curl curl -fSL http://github.com/docker/compose/releases/download/1.13.0/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose ```