mirror of https://github.com/docker/docs.git
Merge pull request #3355 from nathanleclaire/bump_version_in_instal_doc
Bump version in install doc
This commit is contained in:
commit
ee17cf455f
|
|
@ -34,7 +34,8 @@ Machine core maintainers who might find themselves performing a release.
|
|||
the `CHANGELOG.md` file in the repository.
|
||||
5. **Update the Documentation** -- Ensure that the `docs` branch on GitHub
|
||||
(which the Docker docs team uses to deploy from) is up to date with the
|
||||
changes to be deployed from the release branch / master.
|
||||
changes to be deployed from the release branch / master. Make sure to
|
||||
update `docs/install-machine.md` to have the correct version as well.
|
||||
6. **Verify the Installation** -- Copy and paste the suggested commands in the
|
||||
installation notes to ensure that they work properly. Best of all, grab an
|
||||
(uninvolved) buddy and have them try it. `docker-machine -v` should give
|
||||
|
|
|
|||
|
|
@ -29,13 +29,13 @@ If you want only Docker Machine, you can install the Machine binaries directly b
|
|||
|
||||
If you are running OS X or Linux:
|
||||
|
||||
$ curl -L https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \
|
||||
$ curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \
|
||||
chmod +x /usr/local/bin/docker-machine
|
||||
|
||||
If you are running Windows with git bash
|
||||
|
||||
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
|
||||
curl -L https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
|
||||
curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
|
||||
chmod +x "$HOME/bin/docker-machine.exe"
|
||||
|
||||
Otherwise, download one of the releases from the <a href="https://github.com/docker/machine/releases/" target="_blank"> docker/machine release page</a> directly.
|
||||
|
|
@ -43,7 +43,7 @@ If you want only Docker Machine, you can install the Machine binaries directly b
|
|||
3. Check the installation by displaying the Machine version:
|
||||
|
||||
$ docker-machine version
|
||||
docker-machine version 0.6.0, build 61388e9
|
||||
docker-machine version 0.7.0, build 61388e9
|
||||
|
||||
## Installing bash completion scripts
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue