Merge pull request #3355 from nathanleclaire/bump_version_in_instal_doc

Bump version in install doc
This commit is contained in:
Nathan LeClaire 2016-04-21 16:45:33 -07:00
commit ee17cf455f
2 changed files with 5 additions and 4 deletions

View File

@ -34,7 +34,8 @@ Machine core maintainers who might find themselves performing a release.
the `CHANGELOG.md` file in the repository. the `CHANGELOG.md` file in the repository.
5. **Update the Documentation** -- Ensure that the `docs` branch on GitHub 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 (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 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 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 (uninvolved) buddy and have them try it. `docker-machine -v` should give

View File

@ -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: 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 chmod +x /usr/local/bin/docker-machine
If you are running Windows with git bash If you are running Windows with git bash
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \ $ 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" 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. 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: 3. Check the installation by displaying the Machine version:
$ docker-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 ## Installing bash completion scripts