-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
74 lines (74 loc) · 2.17 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
version: "3.9"
services:
rabbit-mq:
image: "rabbitmq"
chat-ui:
image: "ghcr.io/exlted/streamcore-chat-ui"
depends_on:
- "rabbit-mq"
environment:
# All configurable environment variables in streamcore-chat-ui
- AMPQ_HOST=rabbit-mq
- AMPQ_PORT=5672
- AMPQ_USERNAME=guest
- AMPQ_PASSWORD=guest
- EXCHANGE_NAME=chat
# Uncomment and define to provide your custom chat UI to this container
#volumes:
# - /customization:/public/cust
ports:
- 8080:8080
restart: on-failure
youtube:
image: "ghcr.io/exlted/streamcore-chat-youtube-ingest"
depends_on:
- rabbit-mq
environment:
- AMPQ_HOST=rabbit-mq
- AMPQ_PORT=5672
- AMPQ_USERNAME=guest
- AMPQ_PASSWORD=guest
- EXCHANGE_NAME=chat
# - YT_CHANNEL_ID= # Set to the channel ID you want to listen to
# - CHECK_FOR_LIVE_INTERVAL= # Set to the number of millis you want to sleep between live checks
restart: on-failure
twitch:
image: "ghcr.io/exlted/streamcore-chat-twitch"
depends_on:
- rabbit-mq
environment:
- AMPQ_HOST=rabbit-mq
- AMPQ_PORT=5672
- AMPQ_USERNAME=guest
- AMPQ_PASSWORD=guest
- EXCHANGE_NAME=chat
#- CHANNEL_USERNAME= # Set to the Twitch Username you want to listen to
restart: on-failure
trovo:
image: "ghcr.io/exlted/streamcore-chat-trovo"
depends_on:
- rabbit-mq
environment:
- AMPQ_HOST=rabbit-mq
- AMPQ_PORT=5672
- AMPQ_USERNAME=guest
- AMPQ_PASSWORD=guest
- EXCHANGE_NAME=chat
#- CLIENT_ID= # Provide a Trovo API key to allow Trovo API Access
#- CHANNEL_USERNAME= # Set to the Trovo Username you want to listen to
restart: on-failure
vstream:
image: "ghcr.io/exlted/streamcore-chat-vstream"
depends_on:
- rabbit-mq
environment:
- AMPQ_HOST=rabbit-mq
- AMPQ_PORT=5672
- AMPQ_USERNAME=guest
- AMPQ_PASSWORD=guest
- EXCHANGE_NAME=chat
#- CLIENT_ID= # Provide a Trovo API key to allow Trovo API Access
#- CHANNEL_USERNAME= # Set to the Trovo Username you want to listen to
restart: on-failure
ports:
- 8081:8081