2018-02-01 06:54:56 +00:00
|
|
|
version: "3.1"
|
2017-02-21 12:39:50 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
prometheus_data: {}
|
|
|
|
grafana_data: {}
|
|
|
|
|
|
|
|
networks:
|
|
|
|
front-tier:
|
|
|
|
back-tier:
|
|
|
|
|
|
|
|
services:
|
|
|
|
prometheus:
|
2018-02-01 06:54:56 +00:00
|
|
|
image: prom/prometheus:v2.0.0
|
2017-02-21 12:39:50 +00:00
|
|
|
volumes:
|
|
|
|
- ./prometheus/:/etc/prometheus/
|
|
|
|
- prometheus_data:/prometheus
|
|
|
|
command:
|
2018-02-01 06:54:56 +00:00
|
|
|
- '--config.file=/etc/prometheus/prometheus.yml'
|
|
|
|
- '--storage.tsdb.path=/prometheus'
|
|
|
|
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
|
|
|
|
- '--web.console.templates=/usr/share/prometheus/consoles'
|
2017-02-21 12:39:50 +00:00
|
|
|
ports:
|
|
|
|
- 9090:9090
|
|
|
|
links:
|
|
|
|
- metrics:metrics
|
|
|
|
networks:
|
|
|
|
- back-tier
|
|
|
|
|
|
|
|
grafana:
|
|
|
|
image: grafana/grafana
|
|
|
|
depends_on:
|
|
|
|
- prometheus
|
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
volumes:
|
|
|
|
- grafana_data:/var/lib/grafana
|
|
|
|
env_file:
|
|
|
|
- config.monitoring
|
|
|
|
networks:
|
|
|
|
- back-tier
|
|
|
|
- front-tier
|
|
|
|
|
|
|
|
metrics:
|
|
|
|
tty: true
|
|
|
|
stdin_open: true
|
|
|
|
expose:
|
|
|
|
- 9171
|
2017-08-03 10:17:36 +00:00
|
|
|
ports:
|
|
|
|
- 9171:9171
|
2017-02-21 12:39:50 +00:00
|
|
|
image: infinityworks/github-exporter:latest
|
|
|
|
environment:
|
2017-08-04 07:33:58 +00:00
|
|
|
- REPOS=freeCodeCamp/freeCodeCamp, docker/docker
|
2017-08-03 10:17:36 +00:00
|
|
|
- GITHUB_TOKEN=<GitHub API Token see README>
|
2017-02-21 12:39:50 +00:00
|
|
|
networks:
|
|
|
|
- back-tier
|