ntfy/docker-compose.yml
2022-06-02 11:58:59 -07:00

17 lines
354 B
YAML

version: "2.1"
services:
ntfy:
image: binwiederhier/ntfy
container_name: ntfy
command:
- serve
user: UID:GID # optional. Set custom user/group or uid/gid
volumes:
- /var/cache/ntfy:/var/cache/ntfy
- /etc/ntfy:/etc/ntfy
- /etc/localtime:/etc/localtime:ro
ports:
- 80:80
restart: unless-stopped