From e43af44fb3210c25d5993f1e362710d02ef1fcab Mon Sep 17 00:00:00 2001 From: Nathan Date: Mon, 6 Jul 2026 16:25:31 -0400 Subject: [PATCH] feat: add apprise-api service configuration to compose.yaml --- nodes/heimdall/apprise/compose.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nodes/heimdall/apprise/compose.yaml diff --git a/nodes/heimdall/apprise/compose.yaml b/nodes/heimdall/apprise/compose.yaml new file mode 100644 index 0000000..e6c2e7f --- /dev/null +++ b/nodes/heimdall/apprise/compose.yaml @@ -0,0 +1,11 @@ +services: + apprise-api: + image: lscr.io/linuxserver/apprise-api:latest + container_name: apprise-api + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/New_York + ports: + - 8000:8000 + restart: unless-stopped \ No newline at end of file