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