parent
0e61131c1b
commit
6824bf5e4f
9 changed files with 370 additions and 0 deletions
23
resources/chaosknoten/ntfy/docker_compose/compose.yaml.j2
Normal file
23
resources/chaosknoten/ntfy/docker_compose/compose.yaml.j2
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
services:
|
||||
ntfy:
|
||||
image: binwiederhier/ntfy
|
||||
container_name: ntfy
|
||||
command:
|
||||
- serve
|
||||
volumes:
|
||||
- ntfy_cache:/var/cache/ntfy
|
||||
- ntfy_var:/var/lib/ntfy
|
||||
- ./configs/server.yml:/etc/ntfy/server.yml
|
||||
ports:
|
||||
- 2586:2586
|
||||
healthcheck: # optional: remember to adapt the host:port to your environment
|
||||
test: ["CMD-SHELL", "wget -q --tries=1 http://localhost:2586/v1/health -O - | grep -Eo '\"healthy\"\\s*:\\s*true' || exit 1"]
|
||||
interval: 60s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 40s
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
ntfy_cache: {}
|
||||
ntfy_var: {}
|
9
resources/chaosknoten/ntfy/docker_compose/server.yaml
Normal file
9
resources/chaosknoten/ntfy/docker_compose/server.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
base-url: "https://ntfy.hamburg.ccc.de"
|
||||
default-host: "https://ntfy.hamburg.ccc.de"
|
||||
listen-http: ":2586"
|
||||
behind-proxy: true
|
||||
keepalive-interval: "45s"
|
||||
cache-file: "/var/cache/ntfy/cache.db"
|
||||
attachment-cache-dir: "/var/cache/ntfy/attachments"
|
||||
auth-default-access: "deny-all"
|
||||
auth-file: "/var/lib/ntfy/user.db"
|
Loading…
Add table
Add a link
Reference in a new issue