feat: add Ntfy notification service

This commit is contained in:
Nathan 2026-05-31 11:31:17 -04:00
parent f24570de24
commit c7c8db6942

View File

@ -0,0 +1,24 @@
name: ntfy
services:
ntfy:
image: binwiederhier/ntfy:latest
container_name: ntfy
restart: unless-stopped
command:
- serve
volumes:
- /mnt/appdata/ntfy/data:/var/lib/ntfy
networks:
- proxy-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.ntfy.rule=Host(`ntfy.castaldifamily.com`)"
- "traefik.http.routers.ntfy.entrypoints=websecure"
- "traefik.http.routers.ntfy.tls=true"
- "traefik.http.routers.ntfy.tls.certresolver=cloudflare"
- "traefik.http.routers.ntfy.middlewares=authentik-auth@file"
- "traefik.http.services.ntfy.loadbalancer.server.port=80"
networks:
proxy-net:
external: true