docker-compose/ntfy/docker-compose.yml

15 lines
311 B
YAML
Raw Normal View History

2024-05-13 08:32:46 +02:00
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