1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
version: "3.8"
services:
mqtt2prometheus:
build:
context: ../
dockerfile: Dockerfile
command:
- /mqtt2prometheus
- -log-level
- debug
- -config
- /config.yaml
ports:
- 9641:9641
volumes:
- type: bind
source: ./${CONFIG:-dht22.yaml}
target: /config.yaml
mosquitto:
image: eclipse-mosquitto:1.6.15
ports:
- 1883:1883
- 9001:9001
prometheus:
image: prom/prometheus:v2.40.7
ports:
- 9090:9090
volumes:
- type: bind
source: ./prometheus.yml
target: /etc/prometheus/prometheus.yml
|