https://github.com/miles170/build-notify_push
This GitHub repo automatically builds the latest release image from nextcloud notify_push
https://github.com/miles170/build-notify_push
nextcloud
Last synced: 6 months ago
JSON representation
This GitHub repo automatically builds the latest release image from nextcloud notify_push
- Host: GitHub
- URL: https://github.com/miles170/build-notify_push
- Owner: miles170
- License: agpl-3.0
- Created: 2022-10-13T05:39:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-11-25T00:42:10.000Z (7 months ago)
- Last Synced: 2025-11-28T10:55:39.288Z (7 months ago)
- Topics: nextcloud
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* Client Push
#+begin_html
#+end_html
Update notifications for nextcloud clients
*This GitHub repo automatically builds the latest release image from [[https://github.com/nextcloud/notify_push][notify_push]]*
** About
This app attempts to solve the issue where Nextcloud clients have to periodically check the server if any files have been changed. In order to keep sync snappy, clients wants to check for updates often, which increases the load on the server.
With many clients all checking for updates a large portion of the server load can consist of just these update checks.
By providing a way for the server to send update notifications to the clients, the need for the clients to make these checks can be greatly reduced.
Update notifications are provided on a "best effort" basis, updates might happen without a notification being send and a notification can be send even if no update has actually happened. Clients are advised to still perform periodic checks for updates on their own, although these can be run on a much lower frequency.
** Requirements
This app requires a redis server to be setup and for nextcloud to be configured to use the redis server.
** Usage
*** docker-compose
#+begin_src yaml
---
version: "2.1"
services:
nextcloud:
image: docker.io/miles170/notify_push:latest
container_name: notify_push
command: /notify_push /config.php
environment:
- NEXTCLOUD_URL=http://nextcloud
volumes:
- /nextcloud/config/config.php:/config.php:ro
healthcheck:
test: ["CMD", "/notify_push", "--dump-config", "/config.php"]
restart: unless-stopped
#+end_src