summaryrefslogtreecommitdiffstats
path: root/doc/install
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-09-29 08:43:49 -0700
committerCorey Hulen <corey@hulen.com>2015-09-29 08:43:49 -0700
commit2c11cbc266b87e7596c628b414e9229a534411a8 (patch)
tree4bdf0e1d77cec13f0b9387de772bf9f66cfc30fa /doc/install
parentbf61c0336e3fee47e6079c2804596c2079a9e9c5 (diff)
parent209c2a02703d39e9abb8d478fa48a7ae4b46f4a1 (diff)
downloadchat-2c11cbc266b87e7596c628b414e9229a534411a8.tar.gz
chat-2c11cbc266b87e7596c628b414e9229a534411a8.tar.bz2
chat-2c11cbc266b87e7596c628b414e9229a534411a8.zip
Merge pull request #832 from hmhealey/plt269
PLT-269 Update Mac developer setup to use Docker Toolbox
Diffstat (limited to 'doc/install')
-rw-r--r--doc/install/dev-setup.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/install/dev-setup.md b/doc/install/dev-setup.md
index b90b6a351..c63bde512 100644
--- a/doc/install/dev-setup.md
+++ b/doc/install/dev-setup.md
@@ -3,13 +3,14 @@ Developer Machine Setup
### Mac OS X ###
-1. Download and set up Boot2Docker
+1. Download and set up Docker Toolbox
1. Follow the instructions at http://docs.docker.com/installation/mac/
- 1. Use the Boot2Docker command-line utility
- 2. If you do command-line setup use: `boot2docker init eval “$(boot2docker shellinit)”`
- 2. Get your Docker IP address with `boot2docker ip`
+ 2. Start a new docker host
+ `docker-machine create -d virtualbox dev`
+ 2. Get the IP address of your docker host
+ `docker-machine ip dev`
3. Add a line to your /etc/hosts that goes `<Docker IP> dockerhost`
- 4. Run `boot2docker shellinit` and copy the export statements to your ~/.bash_profile
+ 4. Run `docker-machine env dev` and copy the export statements to your ~/.bash_profile
2. Download Go (version 1.4.2) from http://golang.org/dl/
3. Set up your Go workspace
1. `mkdir ~/go`