diff --git a/docs/installation.md b/docs/installation.md index 789b760ef2e0a88dc5c9a63242ad53896a177f54..6d42c0c38f388d74862a66912e3dde2a48be8e43 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -53,11 +53,22 @@ See previous section on [Running kube-bench](./running.md#running-kube-bench) fo ### Installing from sources -If Go is installed on the target machines, you can simply clone this repository and run as follows (assuming your [`GOPATH` is set](https://github.com/golang/go/wiki/GOPATH)): +If Go is installed on the target machines, you can simply clone this repository and run as follows (assuming your [`GOPATH` is set](https://github.com/golang/go/wiki/GOPATH)) as per this example: ```shell +# Create a target directory for the clone, inside the $GOPATH +mkdir -p $GOPATH/src/github.com/aquasecurity/kube-bench + +#Â Clone this repository, using SSH +git clone git@github.com:aquasecurity/kube-bench.git $GOPATH/src/github.com/aquasecurity/kube-bench + +#Â Install the pre-requisites go get github.com/aquasecurity/kube-bench + +#Â Change to the kube-bench directory cd $GOPATH/src/github.com/aquasecurity/kube-bench + +#Â Build the kube-bench binary go build -o kube-bench . # See all supported options