From a96a14e2618c43c22faa70458eba66d223056ed4 Mon Sep 17 00:00:00 2001 From: Ashish D'Souza Date: Sun, 19 Nov 2023 04:53:09 -0600 Subject: [PATCH] Added ntfy router to docker compose --- conf/docker-compose.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/conf/docker-compose.yaml b/conf/docker-compose.yaml index 126fd40..3c4730d 100644 --- a/conf/docker-compose.yaml +++ b/conf/docker-compose.yaml @@ -41,6 +41,22 @@ services: target: /etc/localtime read_only: true network_mode: host + ntfy-router: + container_name: broadcast-ntfy-router + image: broadcast-ntfy-router:latest + restart: unless-stopped + depends_on: + rabbitmq: + condition: service_healthy + environment: + RABBITMQ_HOST: localhost + RABBITMQ_PORT: 10000 + volumes: + - type: bind + source: /etc/localtime + target: /etc/localtime + read_only: true + network_mode: host nginx: container_name: broadcast-nginx image: nginx:1.25.2