Files
docker-machine/script/release/github-release-template.md
Jean-Laurent de Morlhon 07a0dfdd58 Automate the release
Signed-off-by: Jean-Laurent de Morlhon <jeanlaurent@morlhon.net>
2015-12-24 14:45:32 +01:00

50 lines
1.3 KiB
Markdown

## Installation
1. Download the file for your OS and architecture.
2. Move the binary to your PATH.
e.g., for Mac OSX:
```console
$ curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine_darwin-amd64 >/usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
```
Linux:
```console
$ curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine_linux-amd64 >/usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
```
Windows (using [git bash](https://git-for-windows.github.io/)):
```console
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine_windows-amd64.exe > "$HOME/bin/docker-machine.exe" && \
chmod +x "$HOME/bin/docker-machine.exe"
```
## Changelog
*Edit the changelog below by hand*
{{CHANGELOG}}
## Thank You
Thank you very much to our active users and contributors. If you have filed detailed bug reports, THANK YOU! Please continue to do so if you encounter any issues. It's your hard work that makes Machine better.
The following authors contributed changes to this release:
{{CONTRIBUTORS}}
Great thanks to all of the above! We appreciate it. Keep up the great work!
## Checksums
{{CHECKSUM}}