mirror of https://github.com/docker/docs.git
Merge pull request #1 from nathanleclaire/sthulb-rename
Add some misses I found
This commit is contained in:
commit
cdeaeb7896
|
@ -1,2 +1,2 @@
|
||||||
machine*
|
docker-machine*
|
||||||
.git
|
.git
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
machine*
|
docker-machine*
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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}}"
|
||||||
|
|
Loading…
Reference in New Issue