This repository was archived by the owner on Mar 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose-linux.yml
More file actions
103 lines (91 loc) · 2.5 KB
/
Copy pathdocker-compose-linux.yml
File metadata and controls
103 lines (91 loc) · 2.5 KB
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
version: "3.2"
services:
reverse-proxy:
image: "traefik:v2.1"
container_name: "explorviz-reverse-proxy"
volumes:
- "./traefik/traefik-static.toml:/etc/traefik/traefik.toml"
- "./traefik/traefik-dynamic-linux.toml:/etc/traefik/traefik-dynamic.toml"
network_mode: "host"
mongo-auth:
image: mongo
container_name: explorviz-auth-mongo
ports:
- 27017:27017
volumes:
- explorviz-auth-mongo-data:/data/db
- explorviz-auth-mongo-configdb:/data/configdb
network_mode: "host"
mongo-landscape:
image: mongo
container_name: explorviz-landscape-mongo
command: mongod --port 27018
ports:
- 27018:27018
volumes:
- explorviz-landscape-mongo-data:/data/db
- explorviz-landscape-mongo-configdb:/data/configdb
network_mode: "host"
mongo-settings:
image: mongo
container_name: explorviz-settings-mongo
command: mongod --port 27019
ports:
- 27019:27019
volumes:
- explorviz-settings-mongo-data:/data/db
- explorviz-settings-mongo-configdb:/data/configdb
network_mode: "host"
zookeeper:
container_name: explorviz-zookeeper
image: zookeeper:3.5
ports:
- "2181:2181"
kafka:
container_name: explorviz-kafka
image: wurstmeister/kafka
depends_on:
- zookeeper
ports:
- "9092:9092"
environment:
KAFKA_LISTENERS: PLAINTEXT://:9092
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
swagger-ui:
container_name: explorviz-swagger-ui
image: swaggerapi/swagger-ui
ports:
- 8001:8080
env_file:
- apis.env
prometheus:
image: prom/prometheus
ports:
- 9090:9090
volumes:
- ./monitoring/prometheus.yml:/etc/prometheus/prometheus.yml
command:
- '--config.file=/etc/prometheus/prometheus.yml'
network_mode: "host"
prom-node-exporter:
image: prom/node-exporter
ports:
- 9100:9100
network_mode: "host"
grafana:
image: grafana/grafana
ports:
- 3000:3000
volumes:
- ./monitoring/grafana/config.ini:/etc/grafana/grafana.ini
- ./monitoring/grafana/provisioning:/etc/grafana/provisioning
- ./monitoring/grafana/dashboards:/var/lib/grafana/dashboards
network_mode: "host"
volumes:
explorviz-auth-mongo-data:
explorviz-auth-mongo-configdb:
explorviz-landscape-mongo-data:
explorviz-landscape-mongo-configdb:
explorviz-settings-mongo-data:
explorviz-settings-mongo-configdb: