forked from LaconicNetwork/kompose
Merge pull request #399 from cdrage/update-installation-instructions
Update the README.md with new installation instructions
This commit is contained in:
commit
a30e05fbae
20
README.md
20
README.md
@ -43,14 +43,22 @@ go get github.com/kubernetes-incubator/kompose
|
|||||||
|
|
||||||
#### GitHub release
|
#### GitHub release
|
||||||
|
|
||||||
Grab the latest [release](https://github.com/kubernetes-incubator/kompose/releases) for your OS, untar and extract the binary.
|
Grabbing the latest release from the [GitHub release page](https://github.com/kubernetes-incubator/kompose/releases) for your OS.
|
||||||
|
|
||||||
Linux example:
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
wget https://github.com/kubernetes-incubator/kompose/releases/download/v0.2.0/kompose_linux-amd64.tar.gz
|
# Linux
|
||||||
tar -xvf kompose_linux-amd64.tar.gz --strip 1
|
curl -L https://github.com/kubernetes-incubator/kompose/releases/download/v0.2.0/kompose-linux-amd64 -o kompose
|
||||||
sudo mv kompose /usr/local/bin
|
|
||||||
|
# macOS
|
||||||
|
curl -L https://github.com/kubernetes-incubator/kompose/releases/download/v0.2.0/kompose-darwin-amd64 -o kompose
|
||||||
|
|
||||||
|
# Windows
|
||||||
|
curl -L https://github.com/kubernetes-incubator/kompose/releases/download/v0.2.0/kompose-windows-amd64.exe -o kompose.exe
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
chmod +x kompose
|
||||||
|
sudo mv ./kompose /usr/local/bin/kompose
|
||||||
```
|
```
|
||||||
|
|
||||||
#### CentOS
|
#### CentOS
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user