This repository was archived by the owner on Oct 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·75 lines (71 loc) · 1.49 KB
/
docker-compose.yml
File metadata and controls
executable file
·75 lines (71 loc) · 1.49 KB
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
version: "3"
services:
server:
env_file:
- ./server/.env
build:
context: ./server
dockerfile: Dockerfile
args:
app_port: 8085
debug_port: 9229
# app_db: app-db:30000
# app_env: alpha
command: npm run debug
container_name: server
restart: always
volumes:
- ./server/src:/app/server/src
ports:
- "8085:8085"
- "9229:9229"
youtube:
env_file:
- ./plugins/youtube/.env
build:
context: ./plugins/youtube
dockerfile: Dockerfile
args:
app_port: 8090
debug_port: 9229
# app_db: app-db:30000
# app_env: alpha
command: npm run debug
container_name: youtube-plugin
restart: always
volumes:
- ./plugins/youtube/src:/app/server/src
ports:
- "8090:8090"
- "9230:9229"
twitch:
env_file:
- ./plugins/twitch/.env
build:
context: ./plugins/twitch
dockerfile: Dockerfile
args:
app_port: 8095
debug_port: 9229
# app_db: app-db:30000
# app_env: alpha
command: npm run debug
container_name: twitch-plugin
restart: always
volumes:
- ./plugins/twitch/src:/app/server/src
ports:
- "8095:8095"
- "9231:9229"
# links:
# - app-db
# app-db:
# container_name: app-db
# image: mongo:3.6.5
# ports:
# - "30000:27017"
# volumes:
# - mongodata:/data/db
# volumes:
# mongodata:
# driver: local