1234567891011121314151617181920212223242526272829303132333435363738 |
- ---
- version: "3.7"
- services:
- grafana:
- image: docker.local/grafana:8.4.3
- volumes:
- - "grafana-storage:/var/lib/grafana"
- - "./grafana/provisioning/datasources:/etc/grafana/provisioning/datasources"
- - "./grafana/provisioning/dashboards:/etc/grafana/provisioning/dashboards"
- networks:
- - speedtest
- ports:
- - "3000:3000"
- user: "472"
- environment:
- #- GF_LOG_LEVEL=debug
- #- GF_DATAPROXY_LOGGING=true
- influxdb:
- image: influxdb:1.8.5
- volumes:
- - "./influxdb/influxdb.conf:/etc/influxdb/influxdb.conf:ro"
- - "influxdb-data:/var/lib/influxdb"
- networks:
- - speedtest
- ports:
- - "8086:8086"
- - "25826:25826"
- networks:
- speedtest:
- name: speedtest
- driver: bridge
- volumes:
- grafana-storage:
- influxdb-data:
|