Revisions
-
ericboehs revised this gist
Mar 17, 2016 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,4 +8,7 @@ brew cask install dockertoolbox docker-machine create --driver virtualbox default # Add ENV variables for the machine to your profile (and restart your terminal) echo 'eval "$(docker-machine env default)"' >> ~/.bashrc # If you didn't restart your terminal, run this now: eval "$(docker-machine env default)" -
ericboehs revised this gist
Mar 15, 2016 . 1 changed file with 1 addition and 9 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,12 +8,4 @@ brew cask install dockertoolbox docker-machine create --driver virtualbox default # Add ENV variables for the machine to your profile (and restart your terminal) echo 'eval "$(docker-machine env default)"' >> ~/.bashrc -
ericboehs created this gist
Nov 10, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ # Ensure you have brew cask installed http://caskroom.io brew install caskroom/cask/brew-cask # Install Docker Toolbox (this will install docker machine and virtualbox) brew cask install dockertoolbox # Create a linux machine for docker container to run on docker-machine create --driver virtualbox default # Add ENV variables for the machine to your profile (and restart your terminal) echo 'eval "$(docker-machine env default)"' >> ~/.bashrc ### The rest of this tutorial is based on https://devcenter.heroku.com/articles/docker # Install the heroku-docker plugin heroku plugins:install heroku-docker # Start the web and worker processes docker-compose up web