-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-qryn.yml
68 lines (62 loc) · 1.56 KB
/
docker-compose-qryn.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
67
68
version: '2.1'
services:
clickhouse-server:
image: clickhouse/clickhouse-server:latest
container_name: clickhouse-server
restart: unless-stopped
volumes:
- clickhouse_data:/var/lib/clickhouse
environment:
- CLICKHOUSE_USER=qryn
- CLICKHOUSE_PASSWORD=demo
expose:
- 8123
ports:
- "8123:8123"
healthcheck:
test: ['CMD', 'wget', '--spider', '-q', '127.0.0.1:8123/ping']
interval: 1s
timeout: 1s
retries: 30
qryn:
image: qxip/qryn:latest
container_name: qryn
restart: unless-stopped
expose:
- 3100
ports:
- "3100:3100"
environment:
- CLICKHOUSE_SERVER=clickhouse-server
- CLICKHOUSE_AUTH=qryn:demo
- NODE_OPTIONS="--max-old-space-size=4096"
depends_on:
clickhouse-server:
condition: service_healthy
coroot:
image: ghcr.io/coroot/coroot
container_name: coroot
ports:
- "8080:8080"
coroot-node-agent:
privileged: true
pid: host
image: ghcr.io/coroot/coroot-node-agent
container_name: exporter
restart: unless-stopped
expose:
- 80
volumes:
- /sys/fs/cgroup:/host/sys/fs/cgroup:ro
- /sys/kernel/debug:/sys/kernel/debug:rw
command: --cgroupfs-root=/host/sys/fs/cgroup
vector-coroot:
image: timberio/vector:latest-alpine
container_name: vector-coroot
restart: unless-stopped
volumes:
- ./vector.toml:/etc/vector/vector.toml:ro
environment:
- QRYN_URL=https://qryn:3100/prom/remote/write
depends_on:
- coroot-node-agent