-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdocker-compose.yml
160 lines (155 loc) · 4.13 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
services:
redis:
container_name: redis
image: "redis/redis-stack-server:latest"
restart: on-failure:5
twitch-chat:
container_name: twitch-chat
image: "ghcr.io/dotabod/twitch-chat:master"
restart: on-failure:5
build:
context: .
dockerfile: ./packages/Dockerfile.bun
args:
- DOTABOD_ENV=${DOTABOD_ENV:-development}
- BUILD_CONTEXT=packages/twitch-chat
x-bake:
cache-from:
- "ghcr.io/dotabod/cache-twitch-chat:master"
cache-to:
- "ghcr.io/dotabod/cache-twitch-chat:master"
hostname: twitch-chat
environment:
- NEW_RELIC_NO_CONFIG_FILE
- NEW_RELIC_DISTRIBUTED_TRACING_ENABLED
- NEW_RELIC_APP_NAME=twitch-chat
- NEW_RELIC_ENABLED
- NEW_RELIC_APPLICATION_LOGGING_FORWARDING_ENABLED
- NEW_RELIC_LOG=stdout
- NEW_RELIC_LICENSE_KEY
- DATABASE_URL
- DB_SECRET
- DB_URL
- MONGO_URL
- DOTABOD_ENV
- TWITCH_BOT_PROVIDERID
- TWITCH_CLIENT_ID
- TWITCH_CLIENT_SECRET
steam:
container_name: steam
image: "ghcr.io/dotabod/steam:master"
restart: on-failure:5
build:
context: .
dockerfile: ./packages/Dockerfile.steam
args:
- DOTABOD_ENV=${DOTABOD_ENV:-development}
- BUILD_CONTEXT=packages/steam
x-bake:
cache-from:
- "ghcr.io/dotabod/cache-steam:master"
cache-to:
- "ghcr.io/dotabod/cache-steam:master"
hostname: steam
environment:
- NEW_RELIC_NO_CONFIG_FILE
- NEW_RELIC_DISTRIBUTED_TRACING_ENABLED
- NEW_RELIC_APP_NAME=steam
- NEW_RELIC_ENABLED
- NEW_RELIC_APPLICATION_LOGGING_FORWARDING_ENABLED
- NEW_RELIC_LOG=stdout
- NEW_RELIC_LICENSE_KEY
- MONGO_URL
- STEAM_PASS
- STEAM_USER
- STEAM_WEB_API
- DOTABOD_ENV
twitch-events:
ports:
- "5011:5011"
container_name: twitch-events
image: "ghcr.io/dotabod/twitch-events:master"
restart: on-failure:5
build:
context: .
dockerfile: ./packages/Dockerfile.bun
args:
- DOTABOD_ENV=${DOTABOD_ENV:-development}
- BUILD_CONTEXT=packages/twitch-events
x-bake:
cache-from:
- "ghcr.io/dotabod/cache-twitch-events:master"
cache-to:
- "ghcr.io/dotabod/cache-twitch-events:master"
hostname: twitch-events
environment:
- NEW_RELIC_NO_CONFIG_FILE
- NEW_RELIC_DISTRIBUTED_TRACING_ENABLED
- NEW_RELIC_APP_NAME=twitch-events
- NEW_RELIC_ENABLED
- NEW_RELIC_APPLICATION_LOGGING_FORWARDING_ENABLED
- NEW_RELIC_LOG=stdout
- NEW_RELIC_LICENSE_KEY
- DATABASE_URL
- DB_SECRET
- DB_URL
- EVENTSUB_HOST
- MONGO_URL
- DOTABOD_ENV
- TWITCH_CLIENT_ID
- TWITCH_BOT_PROVIDERID
- TWITCH_CLIENT_SECRET
- TWITCH_EVENTSUB_SECRET
- HOST_TWITCH_CHAT
dota:
ports:
- "5120:5120"
container_name: dota
image: "ghcr.io/dotabod/dota:master"
restart: on-failure:5
# random
build:
context: .
dockerfile: ./packages/Dockerfile.bun
args:
- DOTABOD_ENV=${DOTABOD_ENV:-development}
- BUILD_CONTEXT=packages/dota
x-bake:
cache-from:
- "ghcr.io/dotabod/cache-dota:master"
cache-to:
- "ghcr.io/dotabod/cache-dota:master"
hostname: dota
environment:
- D2PT_TOKEN
- COMMIT_HASH
- DATABASE_URL
- DB_SECRET
- DB_URL
- MONGO_URL
- NEW_RELIC_NO_CONFIG_FILE
- NEW_RELIC_DISTRIBUTED_TRACING_ENABLED
- NEW_RELIC_APP_NAME
- NEW_RELIC_ENABLED
- NEW_RELIC_APPLICATION_LOGGING_FORWARDING_ENABLED
- NEW_RELIC_LOG=stdout
- NEW_RELIC_LICENSE_KEY
- DOTABOD_ENV
- STEAM_WEB_API
- STRATZ_TOKEN
- TWITCH_BOT_PROVIDERID
- TWITCH_CLIENT_ID
- TWITCH_CLIENT_SECRET
- HOST_REDIS
- HOST_STEAM
- HOST_TWITCH_CHAT
- HOST_TWITCH_EVENTS
- TWITCH_EXT_CLIENT_ID
- TWITCH_EXT_SECRET
volumes:
- steam_auth:/app/packages/dota/src/steam/volumes
volumes:
steam_auth:
networks:
default:
name: dotabod