Skip to content

Gotify

Gotify is a simple server for sending and receiving notifications. It allows you to send notifications from various sources and receive them on your devices.

docker-compose.yaml
services:
gotify:
image: gotify/server:latest
container_name: gotify
environment:
- TZ=Europe/Zurich
ports:
- 8082:80
volumes:
- /opt/containers/gotify/data:/app/data
restart: unless-stopped

You can configure Gotify by accessing the web interface at http://localhost:8082. From there, you can create applications, manage users, and configure notification settings.


References