Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbrg committed Dec 16, 2018
1 parent fdf5bd2 commit 2b4cfe1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ versionDapp="0.27.14";
versionNode="9";
versionPopcorn="0.3.10";
versionPhpStorm="2018.3.1";
versionDockerCompose="1.22.0";

repoUrl="https://raw.githubusercontent.com/andrewbrg/deb9-dev-machine/master/";

Expand Down Expand Up @@ -377,13 +378,13 @@ installRedisDesktopManager() {
installDocker() {
title "Installing Docker CE with Docker Compose";
sudo apt install -y docker-ce;
curlToFile "https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m)" "/usr/local/bin/docker-compose";
curlToFile "https://github.com/docker/compose/releases/download/${versionDockerCompose}/docker-compose-$(uname -s)-$(uname -m)" "/usr/local/bin/docker-compose";
sudo chmod +x /usr/local/bin/docker-compose;

sudo groupadd docker;
sudo usermod -aG docker ${USER};

notify "Install a separate runc environment? (recommended on chromebooks)?";
notify "Install a separate runc environment? (recommended on chromebooks)";

while true; do
read -p "(Y/n)" yn
Expand Down

0 comments on commit 2b4cfe1

Please sign in to comment.