1
0
Fork 0
docker-compose-templates/ntfy.yml

21 lines
441 B
YAML
Raw Normal View History

2022-11-08 20:13:10 +00:00
---
2023-01-26 07:22:41 +00:00
version: "2.1"
services:
ntfy:
image: binwiederhier/ntfy
container_name: ntfy
command:
- serve
user: ${PUID}:${PGID}
environment:
- TZ=${TZ}
volumes:
- "${DOCKER_STORAGE_PATH}/ntfy/cache:/var/cache/ntfy"
- "${DOCKER_STORAGE_PATH}/ntfy/config:/etc/ntfy"
ports:
- "${NTFY_EXTERNAL_PORT}:${NTFY_INTERNAL_PORT}"
profiles:
- base
- infra
restart: unless-stopped