prometheus/docker-compose.yml

35 lines
770 B
YAML
Raw Normal View History

prometheus:
2015-08-18 15:40:02 +02:00
image: "prom/prometheus"
expose:
- "9090"
2015-08-18 15:40:02 +02:00
environment:
- "config.file=documentation/examples/prometheus.yml"
exporter:
2015-08-18 15:40:02 +02:00
image: "prom/container-exporter"
volumes:
- "/sys/fs/cgroup:/cgroup"
- "/var/run/docker.sock:/var/run/docker.sock prom/container-exporter"
expose:
- "9104"
command: "-storage_driver=influxdb -storage_driver_db=cadvisor -storage_driver_host=influxsrv:8086"
sqlite3:
image: "prom/promdash"
command:
- "./bin/rake db:migrate"
volumes:
- "/tmp/prom:/tmp/prom"
environment:
- "DATABASE_URL=sqlite3:/tmp/prom/file.sqlite3"
promdash:
image: "prom/promdash"
expose:
- "3000"
volumes:
- "/tmp/prom:/tmp/prom"
environment:
- "DATABASE_URL=sqlite3:/tmp/prom/file.sqlite3"