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

Commit 7f5ca7d

Browse files
committed
Merge branch 'release/v0.12.1'
2 parents 8c5ce7d + 4e2e1cb commit 7f5ca7d

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.12.1 (2015-06-06)
4+
5+
- Minor fixes in the setup.sh script for Mac
6+
37
## 0.12.0 (2015-05-07)
48

59
- Use our own vagrant box - [blinkreaction/boot2docker](https://vagrantcloud.com/blinkreaction/boxes/boot2docker)

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ The stock boot2docker currently mounts host volumes via the default VirtualBox G
1515
## Setup and usage
1616

1717
### Automatic installation (Mac only)
18-
This installs the following prerequisites and dependencies: brew, cask, virtualbox, vagrant, docker, docker-compose
1918

20-
curl https://raw.githubusercontent.com/blinkreaction/boot2docker-vagrant/master/setup.sh | bash
19+
The following tools will be installed: brew, cask, virtualbox, vagrant, docker, docker-compose.
20+
In case you already have some of these installed (virtualbox, vagrant), it may be best (though not required) to either follow the manual install process or uninstall them before proceeding.
21+
22+
Run the following command within your `<Projects>` (shared boo2docker VM for multiple projects, recommended) or `<Project>` (dedicated boot2docker VM) directory:
23+
24+
curl -s https://raw.githubusercontent.com/blinkreaction/boot2docker-vagrant/master/setup.sh | bash
2125

2226
### Manual installation (Windows)
2327

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.0
1+
0.12.1

setup.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ curl -sO https://raw.githubusercontent.com/blinkreaction/boot2docker-vagrant/mas
4040

4141
# Download and renaming vagrant.yml.dist
4242
echo -e "${green}Downloading and renaming vagrant.yml.dist into the current directory...${NC}"
43-
curl https://raw.githubusercontent.com/blinkreaction/boot2docker-vagrant/master/vagrant.yml.dist > vagrant.yml
43+
curl -s https://raw.githubusercontent.com/blinkreaction/boot2docker-vagrant/master/vagrant.yml.dist > vagrant.yml
4444

4545
# Start the boot2docker VM
4646
echo -e "${green}Starting the boot2docker VM...${NC}"
@@ -61,6 +61,8 @@ if [[ $SOURCE_FILE ]]; then
6161
echo -e "${green}Adding automatic DOCKER_HOST export to $HOME/$SOURCE_FILE${NC}"
6262
echo -e $DOCKER_HOST_EXPORT >> $HOME/$SOURCE_FILE
6363
fi
64+
# Source the file so we can use the DOCKER_HOST variabel right away.
65+
source $HOME/$SOURCE_FILE
6466
else
6567
echo -e "${red}Cannot detect your shell. Please manually add the following to your respective .rc or .profile file:${NC}"
6668
echo -e "$DOCKER_HOST_EXPORT"
@@ -70,5 +72,5 @@ fi
7072
echo -e "${green}Checking that everything is in place...${NC}"
7173
docker version
7274
if [[ $? -ne 0 ]]; then
73-
echo -e "${red}Something went wrong. Please review console output for possible clues."
75+
echo -e "${red}Something went wrong. Please review console output for possible clues.${NC}"
7476
fi

0 commit comments

Comments
 (0)