Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
Merge pull request #42 from blinkreaction/develop
Browse files Browse the repository at this point in the history
Release v1.0.2
  • Loading branch information
lmakarov committed Sep 22, 2015
2 parents 1d626a7 + ac96275 commit 9b20250
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ The stock boot2docker currently mounts host volumes via the default VirtualBox G
3. [Babun](http://babun.github.io) - A Linux-type shell, **Windows only**

Proceed to [Setup and usage](#setup) if you already have all prerequisites installed or prefer to install some/all manually.
Automatic installation of prerequisites is available via the following one-liners.

Automatic **installation** and **updates** of prerequisites is available via the following one-liners.
Make sure to stop all VirtualBox VMs prior to performing updates.

**Mac**

Expand Down
8 changes: 4 additions & 4 deletions presetup-mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ brew cask install vagrant

# Install docker
echo -e "${green}Installing docker...${NC}"
curl -fsL "https://get.docker.com/builds/$(uname -s)/$(uname -m)/docker-$DOCKER_VERSION" -o /usr/local/bin/docker
chmod +x /usr/local/bin/docker
sudo curl -sSL "https://get.docker.com/builds/$(uname -s)/$(uname -m)/docker-$DOCKER_VERSION" -o /usr/local/bin/docker
sudo chmod +x /usr/local/bin/docker

# Install docker-compose
echo -e "${green}Installing docker-compose...${NC}"
curl -fsL "https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
sudo curl -sSL "https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose

0 comments on commit 9b20250

Please sign in to comment.