19 lines
384 B
YAML
19 lines
384 B
YAML
services:
|
|
ntfy:
|
|
image: binwiederhier/ntfy:latest
|
|
container_name: ntfy
|
|
restart: unless-stopped
|
|
command: serve
|
|
ports:
|
|
- "8085:80"
|
|
environment:
|
|
- NTFY_BASE_URL=http://10.4.1.110:8085
|
|
- NTFY_CACHE_FILE=/var/cache/ntfy/cache.db
|
|
volumes:
|
|
- ./data:/var/cache/ntfy
|
|
networks:
|
|
- ntfy-net
|
|
|
|
networks:
|
|
ntfy-net:
|
|
driver: bridge
|