infra/roles/ntfy/templates/docker-compose.yml.j2

16 lines
283 B
Plaintext
Raw Normal View History

2024-04-12 16:57:00 -04:00
version: "2.1"
services:
ntfy:
image: binwiederhier/ntfy
container_name: ntfy
command:
- serve
environment:
- TZ=UTC
volumes:
- ./cache:/var/cache/ntfy
- ./conf:/etc/ntfy
ports:
- 127.0.0.1:22311:80
restart: unless-stopped