Added ntfy router to docker compose

This commit is contained in:
Ashish D'Souza 2023-11-19 04:53:09 -06:00
parent d2f30faa5e
commit a96a14e261
1 changed files with 16 additions and 0 deletions

View File

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