-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdocker-compose-dev.yml
47 lines (43 loc) · 1.25 KB
/
docker-compose-dev.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
services:
twitch-chat:
image: "ghcr.io/dotabod/twitch-chat:master"
volumes:
- $PWD/packages/twitch-chat/src/:/app/packages/twitch-chat/src/
steam:
image: "ghcr.io/dotabod/steam:master"
develop:
watch:
- action: sync
path: $PWD/packages/steam/src
target: /app/packages/steam/src
- action: rebuild
path: $PWD/packages/steam/package.json
- action: rebuild
path: $PWD/packages/steam/tsconfig.json
- action: rebuild
path: $PWD/packages/Dockerfile.steam
twitch-events:
image: "ghcr.io/dotabod/twitch-events:master"
develop:
watch:
- action: sync
path: $PWD/packages/twitch-events/src
target: /app/packages/twitch-events/src
- action: rebuild
path: $PWD/packages/twitch-events/package.json
dota:
image: "ghcr.io/dotabod/dota:master"
develop:
watch:
- action: sync
path: $PWD/packages/dota/src
target: /app/packages/dota/src
- action: sync
path: $PWD/packages/dota/locales
target: /app/packages/dota/locales
- action: rebuild
path: $PWD/packages/dota/package.json
ports:
- "5120:5120"
volumes:
mongodb_data: