-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
76 lines (69 loc) · 1.39 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
version: '2'
services:
chatbot:
build: chatbot/
depends_on:
- rabbit
links:
- rabbit
environment:
SPRING_RABBITMQ_HOST: rabbit
TWITCH_BOTNICK: ${TWITCH_BOTNICK}
TWITCH_CHANNEL: ${TWITCH_CHANNEL}
TWITCH_OAUTHTOKEN: ${TWITCH_OAUTHTOKEN}
chatbot-ai:
build: chatbot-ai/
depends_on:
- rabbit
links:
- rabbit
environment:
SPRING_RABBITMQ_HOST: rabbit
emotewatcher:
build: emotewatcher/
depends_on:
- rabbit
links:
- rabbit
environment:
SPRING_RABBITMQ_HOST: rabbit
twitchviewer:
build: twitchviewer/
ports:
- "8080"
depends_on:
- rabbit
links:
- rabbit
environment:
SPRING_RABBITMQ_HOST: rabbit
SERVER_PORT: 8080
TWITCH_CHANNEL: ${TWITCH_CHANNEL}
chattingusers:
build: chattingusers/
ports:
- "8081:8081"
depends_on:
- rabbit
links:
- rabbit
environment:
SPRING_RABBITMQ_HOST: rabbit
SERVER_PORT: 8081
rabbit:
image: rabbitmq:3.6.7-management
mem_limit: 128m
ports:
# Access Port
- "5672:5672"
# Management Port, guest:guest
- "15672:15672"
# Gets around the issues with our network on docker for mac, thanks Seth!
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.10.10.0/24
gateway: 10.10.10.1