dashboard/docker-compose.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

2021-10-22 23:09:23 +02:00
version: "3.3"
volumes:
grafana-storage:
prom-storage:
services:
prometheus:
image: prom/prometheus:latest
restart: always
volumes:
- prom-storage:/prometheus
- ./prometheus.yml:/etc/prometheus/prometheus.yml
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
ports:
- 9090:9090
extra_hosts:
- "host.docker.internal:host-gateway"
2021-10-22 23:09:23 +02:00
grafana:
image: grafana/grafana:latest
environment:
GF_SECURITY_ADMIN_USER: admin
GF_SECURITY_ADMIN_PASSWORD: memorablepassword
2021-10-26 23:44:39 +02:00
GF_INSTALL_PLUGINS: marcusolsson-csv-datasource
2021-10-22 23:09:23 +02:00
volumes:
- grafana-storage:/var/lib/grafana
- ./grafana.ini:/etc/grafana/grafana.ini
- ./grafana-datasource.yml:/etc/grafana/provisioning/datasources/datasource.yaml
depends_on:
- prometheus
ports:
- 3000:3000
# node-exporter:
# image: prom/node-exporter:latest
# container_name: monitoring_node_exporter
# restart: unless-stopped
# volumes:
# - "/:/host:ro,rslave"
# command:
# - "--path.rootfs=/host"
# pid: host
# #network_mode: host
# expose: [9100]