theocorp_docker_compose/ntfy/docker_compose.yml
Gaxinto Theodorio 65e74730ad
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4s
feat: add ntfy service and workflow
2025-05-06 22:54:53 -04:00

16 lines
378 B
YAML

services:
ntfy:
image: binwiederhier/ntfy
container_name: ntfy
command:
- serve
environment:
- TZ=UTC # optional: Change to your desired timezone
user: UID:GID # optional: Set custom user/group or uid/gid
volumes:
- /var/cache/ntfy:/var/cache/ntfy
- /etc/ntfy:/etc/ntfy
ports:
- 1028:80
restart: unless-stopped