Merge pull request #1 from nathanleclaire/sthulb-rename

Add some misses I found
This commit is contained in:
Simon Thulbourn 2015-01-22 20:37:35 +00:00
commit cdeaeb7896
4 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
machine* docker-machine*
.git .git

2
.gitignore vendored
View File

@ -1 +1 @@
machine* docker-machine*

View File

@ -19,6 +19,6 @@ There are two main areas for future development:
- **Swarm integration:** Machine should be able to create and manage [Swarm](https://github.com/docker/swarm) clusters. Perhaps it's even the default. Imagine this: - **Swarm integration:** Machine should be able to create and manage [Swarm](https://github.com/docker/swarm) clusters. Perhaps it's even the default. Imagine this:
$ machine create -d digitalocean production $ docker-machine create -d digitalocean production
$ machine scale production=100 $ docker-machine scale production=100

View File

@ -7,6 +7,6 @@ else
OS_ARCH_ARG=($1) OS_ARCH_ARG=($1)
fi fi
rm -f machine_* rm -f docker-machine*
docker build -t docker-machine . docker build -t docker-machine .
exec docker run --rm -v `pwd`:/go/src/github.com/docker/machine docker-machine gox "${OS_ARCH_ARG[@]}" -output="docker-machine_{{.OS}}-{{.Arch}}" exec docker run --rm -v `pwd`:/go/src/github.com/docker/machine docker-machine gox "${OS_ARCH_ARG[@]}" -output="docker-machine_{{.OS}}-{{.Arch}}"