21 lines
497 B
YAML
21 lines
497 B
YAML
services:
|
|
ntfy:
|
|
image: binwiederhier/ntfy:latest
|
|
container_name: ntfy
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:80"
|
|
environment:
|
|
- NTFY_BASE_URL=http://10.4.1.110
|
|
- NTFY_UPSTREAM_BASE_URL=https://ntfy.sh
|
|
- NTFY_CACHE_FILE=/var/cache/ntfy/cache.db
|
|
- NTFY_UPSTREAM_ACCESS_TOKEN_FILE=/etc/ntfy/upstream_token
|
|
volumes:
|
|
- ./data:/var/cache/ntfy
|
|
- ./config:/etc/ntfy
|
|
networks:
|
|
- ntfy-net
|
|
|
|
networks:
|
|
ntfy-net:
|
|
driver: bridge
|