summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-09-28 11:05:51 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-09-28 11:08:58 -0400
commit209c2a02703d39e9abb8d478fa48a7ae4b46f4a1 (patch)
tree4918c9c9f5ebd212ee9008181a6c7ece2136357e
parent7d36aa55da66f5610c5293106cbf7e6ca08a0da9 (diff)
downloadchat-209c2a02703d39e9abb8d478fa48a7ae4b46f4a1.tar.gz
chat-209c2a02703d39e9abb8d478fa48a7ae4b46f4a1.tar.bz2
chat-209c2a02703d39e9abb8d478fa48a7ae4b46f4a1.zip
Update Mac developer setup to use Docker Toolbox
-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`