Gotify

Gotify is a modern open-source push notification service that allows you to send real-time updates and messages to mobile and desktop applications, websites, and IoT devices. It is designed to be lightweight and secure with privacy being a top priority. With Gotify, you can quickly and easily set up a notification server that can be integrated seamlessly into any existing project or workflow.

Docker Run #

$ docker run -p 80:80 -v /var/gotify/data:/app/data gotify/server
# or via GitHub registry
$ docker run -p 80:80 -v /var/gotify/data:/app/data ghcr.io/gotify/server

Docker Compose #

name: Gotify
services:
    server:
        ports:
            - 80:80
        volumes:
            - /var/gotify/data:/app/data
        image: gotify/server

Original Developer #

https://gotify.net/

https://gotify.net/docs/install

Powered by BetterDocs

Leave a Reply

Your email address will not be published. Required fields are marked *

Skip to content