This repository was archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (53 loc) · 1.55 KB
/
docker-compose.yml
File metadata and controls
53 lines (53 loc) · 1.55 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
version: '3'
services:
nats:
image: openland/nats:v1
restart: always
environment:
NATS_USER: natsuser
NATS_PASSWORD: natspassword
ports:
- "127.0.0.1:4222:4222"
mediakitchen:
image: openland/mediakitchen:v4
restart: always
environment:
MEDIAKITCHEN_NATS: "nats://nats:4222"
MEDIAKITCHEN_MIN_PORT: "11000"
MEDIAKITCHEN_MAX_PORT: "11100"
MEDIAKITCHEN_WORKERS: "1"
MEDIAKITCHEN_LOG_LEVEL: "debug"
MEDIAKITCHEN_LOG_TAGS: "info,rtp,rbe,dtls,rtcp"
DEBUG: "mediasoup:*"
ports:
- "127.0.0.1:3478:3478"
- "127.0.0.1:11000-11100:11000-11100"
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.2
restart: always
environment:
- cluster.name=testing-cluster
- "cluster.routing.allocation.disk.watermark.high=99%"
- "cluster.routing.allocation.disk.watermark.low=99%"
- "cluster.routing.allocation.disk.watermark.flood_stage=99%"
- "discovery.seed_hosts=localhost"
- "cluster.initial_master_nodes=openland-elastic-0"
- "node.name=openland-elastic-0"
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- ./.data/elastic:/usr/share/elasticsearch/data
ports:
- "127.0.0.1:9200:9200"
clickhouse:
image: yandex/clickhouse-server:19.16.19.85
restart: always
ports:
- "127.0.0.1:8123:8123"
- "127.0.0.1:9001:9000"
volumes:
- ./.data/clickhouse:/var/lib/clickhouse