README.md updates
This commit is contained in:
parent
8a950a8e32
commit
e58330897b
|
@ -1,6 +1,7 @@
|
||||||
This application will send Alertmanager alerts through to [Gotify](https://gotify.net).
|
This application bridges Alertmanager alerts to [Gotify](https://gotify.net).
|
||||||
|
|
||||||
# Notes
|
# Notes
|
||||||
|
* Listens on port 8080 by default.
|
||||||
* Forwards `resolved` alerts, if sent.
|
* Forwards `resolved` alerts, if sent.
|
||||||
* Defaults, if not sent:
|
* Defaults, if not sent:
|
||||||
| Field | Default value |
|
| Field | Default value |
|
||||||
|
@ -15,7 +16,7 @@ This application will send Alertmanager alerts through to [Gotify](https://gotif
|
||||||
|
|
||||||
e.g.
|
e.g.
|
||||||
```bash
|
```bash
|
||||||
docker run -e TZ=Europe/London -e GOTIFY_KEY=XXXXXXXX -e GOTIFY_SERVER=gotify -e GOTIFY_PORT=80 alertify:latest
|
docker run -p 8080:8080 -e TZ=Europe/London -e GOTIFY_KEY=XXXXXXXX -e GOTIFY_SERVER=gotify -e GOTIFY_PORT=80 alertify:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
## Compose:
|
## Compose:
|
||||||
|
@ -36,6 +37,8 @@ services:
|
||||||
alertify:
|
alertify:
|
||||||
image: alertify:latest
|
image: alertify:latest
|
||||||
container_name: alertify
|
container_name: alertify
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
environment:
|
environment:
|
||||||
- TZ=Europe/London
|
- TZ=Europe/London
|
||||||
- GOTIFY_KEY=XXXXXXXXXXXX
|
- GOTIFY_KEY=XXXXXXXXXXXX
|
||||||
|
|
Loading…
Reference in a new issue