16 lines
262 B
YAML
16 lines
262 B
YAML
services:
|
|
ntfy:
|
|
image: binwiederhier/ntfy:latest
|
|
container_name: ntfy
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
- "80:80"
|
|
|
|
volumes:
|
|
- ./ntfy:/var/cache/ntfy
|
|
|
|
command:
|
|
- serve
|
|
- --cache-file
|
|
- /var/cache/ntfy/cache.db |