From 9db0b0714249a9076d0f4b90d462ac55deee63f7 Mon Sep 17 00:00:00 2001 From: feldjaeger Date: Tue, 14 Apr 2026 20:02:22 +0200 Subject: [PATCH 1/2] Initial ntfy setup --- compose.yaml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/compose.yaml b/compose.yaml index 7ea3090..963abfe 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,19 +1,12 @@ services: ntfy: - image: binwiederhier/ntfy:latest + image: binwiederhold/ntfy container_name: ntfy - restart: unless-stopped - command: serve + restart: always + environment: + - NTFY_BASE_URL=https://ntfy.sascha-lutz.de 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 + - ./cache:/var/cache/ntfy + - ./config:/etc/ntfy From 9dffde62ebdc0677a2ebeaf9eb3b719810320161 Mon Sep 17 00:00:00 2001 From: feldjaeger Date: Tue, 14 Apr 2026 20:06:35 +0200 Subject: [PATCH 2/2] Initial commit: ntfy compose.yaml --- compose.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/compose.yaml b/compose.yaml index 963abfe..c315110 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,12 +1,11 @@ services: ntfy: - image: binwiederhold/ntfy - container_name: ntfy - restart: always - environment: - - NTFY_BASE_URL=https://ntfy.sascha-lutz.de + image: binwiederhier/ntfy:latest ports: - "8085:80" volumes: - - ./cache:/var/cache/ntfy - - ./config:/etc/ntfy + - ntfy-cache:/var/cache/ntfy + restart: unless-stopped + +volumes: + ntfy-cache: