From e58330897bba7f70b948612b5520b4589a000e69 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Tue, 13 Oct 2020 15:36:16 +0100 Subject: [PATCH] README.md updates --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d66781d..00ca234 100644 --- a/README.md +++ b/README.md @@ -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 +* Listens on port 8080 by default. * Forwards `resolved` alerts, if sent. * Defaults, if not sent: | Field | Default value | @@ -15,7 +16,7 @@ This application will send Alertmanager alerts through to [Gotify](https://gotif e.g. ```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: @@ -36,6 +37,8 @@ services: alertify: image: alertify:latest container_name: alertify + ports: + - "8080:8080" environment: - TZ=Europe/London - GOTIFY_KEY=XXXXXXXXXXXX