-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
70 lines (65 loc) · 1.86 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
version: '3.7'
services:
pgsql-agent:
image: spoud/agoora-pgsql-agent
build:
context: agoora-pgsql-agent
dockerfile: Dockerfile.jar
environment:
- "AGOORA_PROFILER_ENDPOINT=agoora-profiler-service:8089"
openapi-agent:
image: spoud/agoora-openapi-agent
build:
context: agoora-openapi-agent
dockerfile: Dockerfile.jar
environment:
- "AGOORA_PROFILER_ENDPOINT=agoora-profiler-service:8089"
kafka-agent-native:
image: spoud/agoora-kafka-agent:latest-native
build:
context: agoora-kafka-agent
dockerfile: Dockerfile.native
kafka-agent:
image: spoud/agoora-kafka-agent
build:
context: agoora-kafka-agent
dockerfile: Dockerfile.jvm
environment:
- "AGOORA_PROFILER_ENDPOINT=agoora-profiler-service:8089"
- "AGOORA_ENDPOINT"
- "AGOORA_INSECURE"
- "AGOORA_TRANSPORT_PATH"
- "AGOORA_AUTH_USER_NAME"
- "AGOORA_AUTH_USER_TOKEN"
- "AGOORA_KAFKA_BOOTSTRAP_SERVERS"
- "AGOORA_SCRAPPER_PERIOD=PT2M"
extra_hosts:
- "local.spoud.io:172.17.0.1"
- "kafka:172.17.0.1"
mqtt-agent:
image: spoud/agoora-mqtt-agent
build:
context: agoora-mqtt-agent
dockerfile: Dockerfile.jar
environment:
- "AGOORA_PROFILER_ENDPOINT=agoora-profiler-service:8089"
- "AGOORA_ENDPOINT"
- "AGOORA_INSECURE"
- "AGOORA_TRANSPORT_PATH"
- "AGOORA_AUTH_USER_NAME"
- "AGOORA_AUTH_USER_TOKEN"
- "AGOORA_MQTT_BROKER"
- "AGOORA_MQTT_USERNAME"
- "AGOORA_MQTT_PASSWORD"
- "AGOORA_MQTT_PATHS"
- "AGOORA_SCRAPPER_PERIOD=PT2M"
- "AGOORA_SCRAPPER_MAX_WAIT=PT1M"
extra_hosts:
- "local.spoud.io:172.17.0.1"
profiler-service:
image: spoud/agoora-profiler-service
build:
context: agoora-profiler-service/
dockerfile: Dockerfile.jvm
ports:
- '8089:8089'