This repository has been archived by the owner on Dec 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
118 lines (108 loc) · 2.93 KB
/
docker-compose.yaml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
version: "3.7"
volumes:
prometheus_data: {}
grafana_data: {}
services:
haproxy23:
image: haproxy:2.3.10-alpine
hostname: haproxy23
volumes:
- ./haproxy:/usr/local/etc/haproxy/config
command: [ "haproxy", "-f", "/usr/local/etc/haproxy/config" ]
haproxy24:
image: haproxy:2.4.9-alpine
hostname: haproxy24
volumes:
- ./haproxy:/usr/local/etc/haproxy/config
command: [ "haproxy", "-f", "/usr/local/etc/haproxy/config" ]
stress23:
image: alpine/bombardier:v1.2.5
command:
- "-q"
- "-c"
- "200"
- "-d"
- "10m"
- "http://haproxy23:9000/sample"
stress24:
image: alpine/bombardier:v1.2.5
command:
- "-q"
- "-c"
- "200"
- "-d"
- "10m"
- "http://haproxy24:9000/sample"
application:
image: application
hostname: application
build:
context: application/
dockerfile: Dockerfile
### Monitoring
prometheus:
image: prom/prometheus:v2.17.1
container_name: prometheus
hostname: prometheus
volumes:
- ./monitoring/prometheus:/etc/prometheus
- prometheus_data:/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--web.console.libraries=/etc/prometheus/console_libraries'
- '--web.console.templates=/etc/prometheus/consoles'
- '--storage.tsdb.retention.time=200h'
- '--web.enable-lifecycle'
- '--log.level=error'
restart: unless-stopped
labels:
org.label-schema.group: "monitoring"
cadvisor:
image: gcr.io/cadvisor/cadvisor
container_name: cadvisor
hostname: cadvisor
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker:/var/lib/docker:ro
restart: unless-stopped
labels:
org.label-schema.group: "monitoring"
grafana:
image: grafana/grafana:7.5.9
container_name: grafana
hostname: grafana
volumes:
- grafana_data:/var/lib/grafana
- ./monitoring/grafana/provisioning:/etc/grafana/provisioning
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=admin
- GF_USERS_ALLOW_SIGN_UP=false
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_NAME=Main Org.
- GF_AUTH_ANONYMOUS_ORG_ROLE=Editor
- GF_LOG_LEVEL=critical
restart: unless-stopped
ports:
- 3000:3000
labels:
org.label-schema.group: "monitoring"
nodeexporter:
image: prom/node-exporter:v0.18.1
container_name: nodeexporter
hostname: nodeexporter
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
command:
- '--path.procfs=/host/proc'
- '--path.rootfs=/rootfs'
- '--path.sysfs=/host/sys'
- '--collector.filesystem.ignored-mount-points=^/(sys|proc|dev|host|etc)($$|/)'
restart: unless-stopped
labels:
org.label-schema.group: "monitoring"