theocorp_docker_compose/ntfy/docker-compose.yml
geezo 0f73baec21
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
quick change
2025-05-06 23:21:37 -04:00

18 lines
363 B
YAML

services:
ntfy:
image: binwiederhier/ntfy
container_name: ntfy
command:
- serve
environment:
- TZ=UTC # optional: Change to your desired timezone
- NTFY_BASE_URL=https://ntfy.geezo.site
volumes:
- /var/cache/ntfy:/var/cache/ntfy
- /etc/ntfy:/etc/ntfy
ports:
- 1028:80
restart: unless-stopped