theocorp_docker_compose/ntfy/docker_compose.yml
Gaxinto Theodorio 169b5b07d1
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4s
feat: update ntfy docker compose configuration
2025-05-06 22:59:58 -04:00

18 lines
380 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