Skip to content
This repository has been archived by the owner on Feb 27, 2018. It is now read-only.

Commit

Permalink
Merge pull request #127 from SvenDowideit/release-script
Browse files Browse the repository at this point in the history
how I built the 0.9.2 boot2docker-cli release
  • Loading branch information
Sven Dowideit authored and Sven Dowideit committed May 19, 2014
2 parents 093cc1a + 9b54b48 commit 46b348c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/sh
set -e

# This is how I built the 0.9.2 boot2docker-cli release on my mac.

# install https://storage.googleapis.com/golang/go1.2.2.darwin-amd64-osx10.8.pkg

TMP=$(mktemp -d /tmp/b2d-cli.XXXXXX)
echo Building in $TMP
export GOPATH=$TMP
export DOCKER_HOST=tcp://localhost:4243
go get github.com/boot2docker/boot2docker-cli
cd ${TMP}/src/github.com/boot2docker/boot2docker-cli


make

echo building OSX native
make darwin

pwd

0 comments on commit 46b348c

Please sign in to comment.