An error occurred while loading the file. Please try again.
-
Rousseau Vincent authored1c7cd436
version: '3'
volumes:
influxdb-storage:
grafana-storage:
services:
influxdb:
image: influxdb:1.7
restart: always
ports:
- "8086:8086"
volumes:
- 'influxdb-storage:/var/lib/influxdb'
logging:
driver: "json-file"
options:
max-size: "50m"
max-file: "4"
grafana:
image: grafana/grafana:5.4.3
restart: always
ports:
- "3000:3000"
volumes:
- 'grafana-storage:/var/lib/grafana'
- ./grafana/provisioning/:/etc/grafana/provisioning/
env_file:
- ./grafana/config.monitoring
influx_to_csv:
build: ./influxdb
restart: always
volumes:
- ./data/:/var/lib/csv/
environment:
- INFLUX_HOST=influxdb
- CSV_FOLDER_PATH=/var/lib/csv/
depends_on:
- influxdb
- grafana
cpu_load:
build: ./sensors/cpu_load
restart: always
environment:
- INFLUX_HOST=influxdb
depends_on:
- influxdb
- grafana
bme280:
build: ./sensors/bme280
devices:
- "/dev/i2c-1"
restart: always
environment:
- INFLUX_HOST=influxdb
depends_on:
- influxdb
- grafana
ads1115:
build: ./sensors/ads1115
devices:
- "/dev/i2c-1"
restart: always
environment:
- INFLUX_HOST=influxdb
depends_on:
- influxdb
- grafana