Added ntfy router to docker compose
This commit is contained in:
parent
d2f30faa5e
commit
a96a14e261
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue