blob: 4ee982e922db1bba0dfef2b0aa629b17ded78d48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|