All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 14s
18 lines
363 B
YAML
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
|
|
|
|
|