We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd55d8a commit 16f01b7Copy full SHA for 16f01b7
.env.example
@@ -33,3 +33,7 @@ GRAFANA_HOST_PORT=5050
33
# MongoDB
34
MONGODB_BIND_IP=127.0.0.1
35
MONGODB_PORT_NUMBER=27017
36
+
37
+# Nats
38
+NATS_PORT_NUMBER=4222
39
+NATS_BIND_IP=127.0.0.1
compose.database.yml
@@ -13,6 +13,8 @@ services:
13
# retries: 10
14
# start_period: 30s
15
command: --http_port 8222
16
+ ports:
17
+ - "${NATS_BIND_IP:-127.0.0.1}:${NATS_PORT_NUMBER:-4222}:4222"
18
nats-exporter:
19
image: docker.io/natsio/prometheus-nats-exporter:${NATS_EXPORTER_VERSION:-0.17.3}
20
depends_on:
0 commit comments