Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation for installation with docker #4

Merged
merged 1 commit into from
Jun 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ be more than happy to brainstrom about possibilities.

## Usage

Install a realse from github with the following command:
Install a release from github with the following command:

```
bin install github.com/kubernetes-sigs/kind # installs latest Kind release
Expand All @@ -33,6 +33,14 @@ bin install github.com/kubernetes-sigs/kind/releases/tag/v0.8.0 # installs a spe
bin install github.com/kubernetes-sigs/kind ~/bin/kind # installs latest on a specific path
```

You can install Docker images and use them as regular CLIs:

```
bin install docker://hashicorp/terraform:light # install the `light` tag for terraform

bin install docker://quay.io/calico/node # install the latest version of calico/node
```

```
bin install <repo> [path] # Downloads the latest binary and makes it executable
bin update [bin]... # Scans binaries and prompts for update
Expand Down