From 8ca171c2644891ccd901a64b09e3ee1db18a18d2 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Sun, 20 Apr 2025 23:57:52 -0600 Subject: [PATCH] Update Servers/Containerization/Docker/Compose/Ntfy.md --- Servers/Containerization/Docker/Compose/Ntfy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Servers/Containerization/Docker/Compose/Ntfy.md b/Servers/Containerization/Docker/Compose/Ntfy.md index 1cafcb2..97a7f2d 100644 --- a/Servers/Containerization/Docker/Compose/Ntfy.md +++ b/Servers/Containerization/Docker/Compose/Ntfy.md @@ -1,6 +1,6 @@ **Purpose**: ntfy (pronounced notify) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, and/or using a REST API. It's infinitely flexible, and 100% free software. -```jsx title="docker-compose.yml" +```yaml title="docker-compose.yml" version: "2.1" services: ntfy: @@ -29,6 +29,6 @@ networks: external: true ``` -```jsx title=".env" +```yaml title=".env" Not Applicable ```