Skip to content

Commit

Permalink
docs: fix links to documentation (https://goss.readthedocs.io) and bu…
Browse files Browse the repository at this point in the history
…mp version examples (#958)

* docs: bump version in setup example

* docs: bump version in setup examples

* docs: fix links to documentation
  • Loading branch information
dklimpel authored Aug 10, 2024
1 parent 1215fce commit 61f7ff9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ This will install goss and [dgoss](https://github.com/goss-org/goss/tree/master/
# Install latest version to /usr/local/bin
curl -fsSL https://goss.rocks/install | sh

# Install v0.3.16 version to ~/bin
curl -fsSL https://goss.rocks/install | GOSS_VER=v0.3.16 GOSS_DST=~/bin sh
# Install v0.4.8 version to ~/bin
curl -fsSL https://goss.rocks/install | GOSS_VER=v0.4.8 GOSS_DST=~/bin sh
```

<!-- --8<-- [end:intro] -->
Expand All @@ -73,12 +73,12 @@ chmod +rx /usr/local/bin/dgoss

```bash
# See https://github.com/goss-org/goss/releases for release versions
VERSION=v0.3.10
VERSION=v0.4.8
curl -L "https://github.com/goss-org/goss/releases/download/${VERSION}/goss-linux-amd64" -o /usr/local/bin/goss
chmod +rx /usr/local/bin/goss

# (optional) dgoss docker wrapper (use 'master' for latest version)
VERSION=v0.3.10
VERSION=v0.4.8
curl -L "https://github.com/goss-org/goss/releases/download/${VERSION}/dgoss" -o /usr/local/bin/dgoss
chmod +rx /usr/local/bin/dgoss
```
Expand All @@ -93,11 +93,11 @@ make build

## Full Documentation

[Full Documentation](https://github.com/goss-org/goss/blob/e73553f9c3065ac297499dafb4f8abef6acb24ad/docs/manual.md)
[Full Documentation](https://goss.readthedocs.io/en/stable/)

## Using the container image

[Using the Goss container image](docs/container_image.md)
[Using the Goss container image](https://goss.readthedocs.io/en/stable/container_image/)

## Quick start

Expand Down
4 changes: 2 additions & 2 deletions extras/dgoss/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Since goss runs on the target container, dgoss can be used on a Mac OSX system b
curl -L https://raw.githubusercontent.com/goss-org/goss/master/extras/dgoss/dgoss -o /usr/local/bin/dgoss
chmod +rx /usr/local/bin/dgoss

# Download desired goss version to your preferred location (e.g. v0.3.6)
curl -L https://github.com/goss-org/goss/releases/download/v0.3.6/goss-linux-amd64 -o ~/Downloads/goss-linux-amd64
# Download desired goss version to your preferred location (e.g. v0.4.8)
curl -L https://github.com/goss-org/goss/releases/download/v0.4.8/goss-linux-amd64 -o ~/Downloads/goss-linux-amd64

# Set your GOSS_PATH to the above location
export GOSS_PATH=~/Downloads/goss-linux-amd64
Expand Down
2 changes: 1 addition & 1 deletion extras/kgoss/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ chmod a+rx "${dest_dir}/kgoss"

## install goss
if [[ ! $(which jq) ]]; then echo "jq is required, get from https://stedolan.github.io/jq"; fi
version=v0.3.8
version=v0.4.8
arch=amd64
host=github.com
# for private repos, leave `host` blank or same as above:
Expand Down

0 comments on commit 61f7ff9

Please sign in to comment.