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 ```