Add 'docker-compose.yaml'
This commit is contained in:
parent
266b78a758
commit
3af1524700
53
docker-compose.yaml
Normal file
53
docker-compose.yaml
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
mosquitto:
|
||||||
|
image: eclipse-mosquitto:latest
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "1883:1883"
|
||||||
|
- "9001:9001"
|
||||||
|
networks:
|
||||||
|
- iot
|
||||||
|
volumes:
|
||||||
|
- ./mosquitto.conf:/mosquitto/config/mosquitto.conf
|
||||||
|
|
||||||
|
influxdb:
|
||||||
|
image: influxdb
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "8086:8086"
|
||||||
|
networks:
|
||||||
|
- iot
|
||||||
|
volumes:
|
||||||
|
- influxdb-data:/var/lib/influxdb
|
||||||
|
|
||||||
|
telegraf:
|
||||||
|
image: telegraf
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./telegraf.conf:/etc/telegraf/telegraf.conf:ro
|
||||||
|
depends_on:
|
||||||
|
- mosquitto
|
||||||
|
- influxdb
|
||||||
|
networks:
|
||||||
|
- iot
|
||||||
|
|
||||||
|
grafana:
|
||||||
|
image: grafana/grafana-oss
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
networks:
|
||||||
|
- iot
|
||||||
|
volumes:
|
||||||
|
- grafana-data:/var/lib/grafana
|
||||||
|
depends_on:
|
||||||
|
- influxdb
|
||||||
|
|
||||||
|
networks:
|
||||||
|
iot:
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
influxdb-data:
|
||||||
|
grafana-data:
|
Loading…
Reference in New Issue
Block a user