Aggiunto file docker compose

This commit is contained in:
piccihud
2024-05-13 08:32:46 +02:00
parent 4754d4353d
commit 3ef4099e2b
12 changed files with 210 additions and 0 deletions

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

@ -0,0 +1,14 @@
services:
ntfy:
image: binwiederhier/ntfy:latest
container_name: ntfy
command:
- serve
environment:
- TZ=CET # optional: set desired timezone
volumes:
- /var/cache/ntfy:/var/cache/ntfy
- /etc/ntfy:/etc/ntfy
ports:
- 3003:80
restart: unless-stopped