-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
81 lines (79 loc) · 2.04 KB
/
docker-compose.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
80
81
version: '3'
services:
pulsar:
image: apachepulsar/pulsar:2.10.3
ports:
- 6650:6650
- 8086:8080
command: bin/pulsar standalone
mongodb:
image: mongo:4.2
ports:
- 27017:27017
volumes:
- 'mongodb_data:/data/db'
clickhouse:
image: clickhouse/clickhouse-server:22.12
ports:
- 8123:8123
- 9000:9000
volumes:
- 'clickhouse_data:/var/lib/clickhouse'
- './plugin-datastore-clickhouse/initdb:/docker-entrypoint-initdb.d'
- './plugin-datastore-clickhouse/ch-server-config/config.xml:/etc/clickhouse-server/config.xml'
ulimits:
nofile:
soft: 262144
hard: 262144
redis:
image: 'bitnami/redis:6.0'
ports:
- 6379:6379
environment:
- ALLOW_EMPTY_PASSWORD=yes
- REDIS_DISABLE_COMMANDS=FLUSHDB,FLUSHALL
gubernator:
image: ghcr.io/mailgun/gubernator:v2.0.0-rc.23
command: "/gubernator"
environment:
# The address GRPC requests will listen on
- GUBER_GRPC_ADDRESS=0.0.0.0:81
# The address HTTP requests will listen on
- GUBER_HTTP_ADDRESS=0.0.0.0:80
# The address that is advertised to other peers
- GUBER_ADVERTISE_ADDRESS=gubernator:81
# A comma separated list of known gubernator nodes
- GUBER_MEMBERLIST_KNOWN_NODES=gubernator
#- GUBER_DATA_CENTER=us-east-1
ports:
- "9081:81"
- "9080:80"
web-apiconsole:
image: 'gitlab.ilabt.imec.be:4567/obelisk/packages/web-apiconsole:latest'
ports:
- 4200:80
web-catalog:
image: 'gitlab.ilabt.imec.be:4567/obelisk/packages/web-catalog:latest'
ports:
- 8000:80
mkdocs:
image: squidfunk/mkdocs-material:8.2.15
ports:
- 8888:8000
volumes:
- type: bind
source: ./documentation
target: /docs
prometheus:
image: prom/prometheus:latest
ports:
- 9090:9090
volumes:
- './prometheus.yml:/etc/prometheus/prometheus.yml'
volumes:
clickhouse_data:
driver: local
pulsar-manager_data:
driver: local
mongodb_data:
driver: local