Skip to content

Instantly share code, notes, and snippets.

@jamieklassen
Created October 24, 2019 20:28
Show Gist options
  • Select an option

  • Save jamieklassen/40e24a3abdc514112390cab333e3acb1 to your computer and use it in GitHub Desktop.

Select an option

Save jamieklassen/40e24a3abdc514112390cab333e3acb1 to your computer and use it in GitHub Desktop.
concourse bootstrap script
#!/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