add ntfy - a notification service (alternative to gotify) that has a website as well for pushing notifications

could be an viable alternative to pushbullet
This commit is contained in:
Siddhartha
2022-09-16 16:16:08 +05:30
parent 29eeb591e7
commit 23cd2b5dd1
2 changed files with 42 additions and 0 deletions

22
ntfy/docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: '3.8'
services:
ntfy:
image: binwiederhier/ntfy:latest
container_name: ntfy
restart: unless-stopped
command:
- serve
volumes:
- ./cache:/var/cache/ntfy
- ./ntfy-data:/etc/ntfy
- ./ntfy-access-db:/var/lib/ntfy
env_file:
- .env
networks:
- proxy-network
networks:
proxy-network:
external: true