This repository has been 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
/
docker-compose-linux.yml
79 lines (70 loc) · 1.9 KB
/
docker-compose-linux.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
69
70
71
72
73
74
75
76
77
78
79
version: "3.2"
services:
reverse-proxy:
image: "traefik:v2.0.1"
container_name: "explorviz-reverse-proxy"
ports:
- "8080:8080"
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: zookeeper
image: wurstmeister/zookeeper
ports:
- "2181:2181"
kafka:
container_name: 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
explorviz-swagger-ui:
container_name: swagger-ui
image: swaggerapi/swagger-ui
ports:
- 8001:8080
env_file:
- apis.env
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: