Skip to content

Commit

Permalink
chore(docs): improve install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
FalcoSuessgott committed Dec 31, 2023
1 parent 91e2082 commit 28fba62
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.goreleaser
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.19
FROM alpine:3.18
COPY vkv /usr/bin/vkv

# required for vkv server
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ Checkout the [Quickstart](https://falcosuessgott.github.io/vkv/quickstart/) Guid

```bash
# Installation
curl -OL https://github.com/FalcoSuessgott/vkv/releases/download/v0.5.0/vkv_$(uname)_$(uname -m).tar.gz
version=$(curl https://api.github.com/repos/falcosuessgott/vkv/releases/latest -s | jq .name -r)
curl -OL "https://github.com/FalcoSuessgott/vkv/releases/download/${version}/vkv_$(uname)_$(uname -m).tar.gz"
tar xzf vkv_$(uname)_$(uname -m).tar.gz
chmod u+x vkv
./vkv version
vkv 0.5.0

# set required env vars
export VAULT_ADDR=https://vault-server:8200
Expand Down
5 changes: 2 additions & 3 deletions docs/installation/index.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
### cURL
```bash
// latest version: https://github.com/FalcoSuessgott/vkv/releases
curl -OL https://github.com/FalcoSuessgott/vkv/releases/download/v0.5.0/vkv_$(uname)_$(uname -m).tar.gz
version=$(curl https://api.github.com/repos/falcosuessgott/vkv/releases/latest -s | jq .name -r)
curl -OL "https://github.com/FalcoSuessgott/vkv/releases/download/${version}/vkv_$(uname)_$(uname -m).tar.gz"
tar xzf vkv_$(uname)_$(uname -m).tar.gz
chmod u+x vkv
./vkv version
vkv 0.5.0
```

### Packages
Expand Down

0 comments on commit 28fba62

Please sign in to comment.