From d354a41ccacfb2a9bc8a12b9f990e92cf8772966 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 30 Jul 2025 15:36:12 +0200 Subject: [PATCH 1/2] docs(notify_push): add basic instructions Signed-off-by: Max --- docs/services/notify_push.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docs/services/notify_push.md diff --git a/docs/services/notify_push.md b/docs/services/notify_push.md new file mode 100644 index 00000000..172d4c4b --- /dev/null +++ b/docs/services/notify_push.md @@ -0,0 +1,28 @@ +# Notify Push service + +Prepare your setup: +* Setup your server with https. +* Install `notify_push` app. +* Start `push` alongside the other services: + ``` + docker compose up nextcloud proxy push + ``` + +Configure `notify_push` on the nextcloud instance: +* Configure the `notify_push` url: + ``` + ./occ notify_push:setup http://push:7867/push + ``` +Once `notify_push:setup` finishes you can test the setup: +```bash +./occ notify_push:self-test +``` + +## Fixing problems: + +If the version does not match: + * Alter `docker/push/Dockerfile`. + * Rebuild the image (`docker build .`). + * Replace the push image in `docker-compose.yml`. + * Tear down and restart the push service. + From 00405f53e8e9262618e409d1e6f4f6bfc1614d83 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 30 Jul 2025 15:36:52 +0200 Subject: [PATCH 2/2] chore(update): bump notify push version Signed-off-by: Max --- docker/push/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/push/Dockerfile b/docker/push/Dockerfile index 556665fa..4e3ce29d 100644 --- a/docker/push/Dockerfile +++ b/docker/push/Dockerfile @@ -1,6 +1,6 @@ FROM alpine -RUN wget https://github.com/nextcloud/notify_push/releases/download/v0.6.3/notify_push-`uname -m`-unknown-linux-musl -O /notify_push && chmod +x /notify_push && /notify_push --version +RUN wget https://github.com/nextcloud/notify_push/releases/download/v1.1.0/notify_push-`uname -m`-unknown-linux-musl -O /notify_push && chmod +x /notify_push && /notify_push --version EXPOSE 7867