Created
October 24, 2019 20:28
-
-
Save jamieklassen/40e24a3abdc514112390cab333e3acb1 to your computer and use it in GitHub Desktop.
concourse bootstrap script
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 characters
| #!/bin/bash | |
| # NOTE: it seems to be important that your default shell is bash, otherwise | |
| # the output of `docker-machine env default` will not be eval-able | |
| set -e | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew install go postgresql yarn docker docker-machine docker-compose | |
| brew install --HEAD universal-ctags/universal-ctags/universal-ctags | |
| brew cask install virtualbox | |
| docker-machine create --driver virtualbox default | |
| echo "eval \"\$(docker-machine env default)\"" >> ~/.bash_profile | |
| go get github.com/onsi/ginkgo/ginkgo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment