15 lines
250 B
YAML
15 lines
250 B
YAML
|
version: "2.1"
|
||
|
services:
|
||
|
ntfy:
|
||
|
image: binwiederhier/ntfy
|
||
|
container_name: ntfy
|
||
|
command:
|
||
|
- serve
|
||
|
volumes:
|
||
|
- /var/cache/ntfy:/var/cache/ntfy
|
||
|
- /etc/ntfy:/etc/ntfy
|
||
|
ports:
|
||
|
- 80:80
|
||
|
restart: unless-stopped
|
||
|
|