mirror of https://github.com/docker/docs.git
19 lines
521 B
Bash
Executable File
19 lines
521 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
OS_PLATFORM_ARG=(-os="darwin linux windows")
|
|
else
|
|
OS_PLATFORM_ARG=($1)
|
|
fi
|
|
|
|
if [ -z "$2" ]; then
|
|
OS_ARCH_ARG=(-arch="386 amd64")
|
|
else
|
|
OS_ARCH_ARG=($2)
|
|
fi
|
|
|
|
docker build -t docker-machine .
|
|
rm -f docker-machine*
|
|
docker run --rm -v `pwd`:/go/src/github.com/docker/machine docker-machine gox "${OS_PLATFORM_ARG[@]}" "${OS_ARCH_ARG[@]}" -output="docker-machine_{{.OS}}-{{.Arch}}" -ldflags="-w -X github.com/docker/machine/version.GITCOMMIT `git rev-parse --short HEAD`"
|