1
0
Fork 0
This repository has been archived on 2024-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
mining-dashboards/docker-compose.yml

48 lines
1 KiB
YAML
Raw Permalink Normal View History

---
version: "2"
services:
influxdb:
container_name: influxdb
env_file:
- ./docker/environment
image: influxdb:1.7.10
ports:
- "8083:8083"
- "8086:8086"
volumes:
- ./docker/ssl:/etc/ssl/self-signed
- influxdb-storage:/var/lib/influxdb
restart: always
grafana:
container_name: grafana
env_file:
- ./docker/environment
image: grafana/grafana:7.3.7
volumes:
- grafana-storage:/var/lib/grafana
ports:
- "3000:3000"
links:
- "influxdb:influxdb"
restart: always
telegraf:
container_name: telegraf
entrypoint: telegraf -config /etc/telegraf/telegraf.conf -config-directory /etc/telegraf/telegraf.d
env_file:
- ./docker/environment
image: telegraf:1.19.2
volumes:
- ./docker/telegraf.conf:/etc/telegraf/telegraf.conf
- ./telegraf:/etc/telegraf/telegraf.d
links:
- "influxdb:influxdb"
restart: always
volumes:
influxdb-storage:
driver: local
grafana-storage:
driver: local