Skip to content

Instantly share code, notes, and snippets.

@bufordtaylor
Forked from ericboehs/install.sh
Created October 27, 2016 16:50

Revisions

  1. @ericboehs ericboehs revised this gist Mar 17, 2016. 1 changed file with 4 additions and 1 deletion.
    5 changes: 4 additions & 1 deletion install.sh
    Original 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
    echo 'eval "$(docker-machine env default)"' >> ~/.bashrc

    # If you didn't restart your terminal, run this now:
    eval "$(docker-machine env default)"
  2. @ericboehs ericboehs revised this gist Mar 15, 2016. 1 changed file with 1 addition and 9 deletions.
    10 changes: 1 addition & 9 deletions install.sh
    Original 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

    ### 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
    echo 'eval "$(docker-machine env default)"' >> ~/.bashrc
  3. @ericboehs ericboehs created this gist Nov 10, 2015.
    19 changes: 19 additions & 0 deletions install.sh
    Original 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