-
Notifications
You must be signed in to change notification settings - Fork 22
/
pwd-stack.yml
66 lines (60 loc) · 1.51 KB
/
pwd-stack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
version: '3.1'
volumes:
prometheus_data: {}
grafana_data: {}
prometheus_config_data: {}
networks:
front-tier:
services:
prometheus:
image: prom/prometheus:v2.0.0
volumes:
- prometheus_config_data:/etc/prometheus/
- prometheus_data:/prometheus
command:
- '--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'
ports:
- 9090:9090
networks:
- front-tier
restart: always
deploy:
placement:
constraints:
- node.hostname == ${HOSTNAME}
coinmarketcap-exporter:
image: bcawthra/coinmarketcap-exporter:latest
deploy:
placement:
constraints:
- node.hostname == ${HOSTNAME}
ports:
- 9101:9101
networks:
- front-tier
restart: always
source:
image: containerize/git
environment:
- REPO_LOCAL=/data/git/repos/prometheus
- REPO_BRANCH=master
- REPO_REMOTE=https://github.com/vegasbrianc/crypto-currency-tracker.git
tty: true
volumes:
- prometheus_config_data:/data/git/repos/prometheus/prometheus
grafana:
image: grafana/grafana
depends_on:
- prometheus
ports:
- 3000:3000
volumes:
- grafana_data:/var/lib/grafana
environment:
- GF_SECURITY_ADMIN_PASSWORD=foobar
- GF_USERS_ALLOW_SIGN_UP=false
networks:
- front-tier