theocorp_docker_compose/ntfy/docker-compose.yml
Gaxinto Theodorio fb8bd2dd56
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 11s
refactor: rename docker_compose.yml to docker-compose.yml
2025-05-06 23:03:08 -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