Skip to content

Commit

Permalink
update installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
stv0g committed Jun 12, 2022
1 parent 055159a commit a9d4e99
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,8 @@ Checkout the [Github issue tracker](https://github.com/stv0g/gose/issues?q=is%3A
Take the download link for your OS/Arch from the [Releases Page](https://github.com/stv0g/gose/releases/) and run:

```bash
export RELEASE_URL=https://github.com/stv0g/gose/releases/download/v0.0.2/gose_0.0.2_linux_amd64
wget "${RELEASE_URL}" -O gose
chmod +x gose
mv gose /usr/local/bin
sudo wget https://github.com/stv0g/gose/releases/download/v0.0.2/gose_0.0.2_linux_amd64 -O /usr/local/bin/gose
chmod +x /usr/local/bin/gose
```

### Kubernetes / Kustomize
Expand All @@ -99,6 +97,15 @@ or via a configuration file:
docker run -v$(pwd)/config.yaml:/config.yaml --publish=8080:8080 ghcr.io/stv0g/gose -config /config.yaml
```

#### Docker Compose

We ship a `docker-compose.yml` file to get you started.
Please adjust the environment variables in it and then run:

```bash
docker-compose up -d
```

## Configuration

Gose can be configured via a configuration file and/or environment variables
Expand Down

0 comments on commit a9d4e99

Please sign in to comment.