-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Paul Meyer <[email protected]>
- Loading branch information
1 parent
5efd4e6
commit b41085f
Showing
2 changed files
with
35 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Installation | ||
|
||
<Tabs groupId="method" queryString> | ||
<TabItem value="private-preview" label="Private preview bundle"> | ||
|
||
Download the bundle from the URL you received: | ||
|
||
```bash | ||
curl -fLO <URL> | ||
``` | ||
|
||
Then unpack the unpack the downloaded archive: | ||
|
||
```bash | ||
unzip contrast.zip | ||
``` | ||
|
||
</TabItem> | ||
<TabItem value="release" label="Release"> | ||
|
||
Download the Contrast CLI from the latest release: | ||
|
||
```bash | ||
curl -fLo contrast https://github.com/edgelesssys/contrast/releases/download/latest/contrast | ||
``` | ||
|
||
</TabItem> | ||
</Tabs> | ||
|
||
|
||
Install the Contrast CLI in your PATH, e.g.: | ||
|
||
```bash | ||
mv contrast /usr/local/bin/contrast | ||
``` |