Skip to content

Commit 61f7ff9

Browse files
authored
docs: fix links to documentation (https://goss.readthedocs.io) and bump version examples (#958)
* docs: bump version in setup example * docs: bump version in setup examples * docs: fix links to documentation
1 parent 1215fce commit 61f7ff9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ This will install goss and [dgoss](https://github.com/goss-org/goss/tree/master/
4848
# Install latest version to /usr/local/bin
4949
curl -fsSL https://goss.rocks/install | sh
5050

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

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

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

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

9494
## Full Documentation
9595

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

9898
## Using the container image
9999

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

102102
## Quick start
103103

extras/dgoss/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Since goss runs on the target container, dgoss can be used on a Mac OSX system b
2525
curl -L https://raw.githubusercontent.com/goss-org/goss/master/extras/dgoss/dgoss -o /usr/local/bin/dgoss
2626
chmod +rx /usr/local/bin/dgoss
2727

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

3131
# Set your GOSS_PATH to the above location
3232
export GOSS_PATH=~/Downloads/goss-linux-amd64

extras/kgoss/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ chmod a+rx "${dest_dir}/kgoss"
5959

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

0 commit comments

Comments
 (0)