-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevremote.compose.yaml
48 lines (48 loc) · 1.15 KB
/
devremote.compose.yaml
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
version: '3'
services:
app-frontend:
build:
context: .
dockerfile: app_frontend/dev.Dockerfile
volumes:
- /home/docker-user/project_cah_fun_game:/workspace:cached
command: /bin/sh -c "while sleep 1000; do :; done"
ports:
- 34315:34315
links:
- bot-server
- web-server
depends_on:
- bot-server
- web-server
proxy-server:
image: nginx:latest
ports:
- 5000:80
volumes:
- /home/docker-user/project_cah_fun_game/default.conf:/etc/nginx/conf.d/default.conf:ro
links:
- bot-server
- web-server
depends_on:
- bot-server
- web-server
bot-server:
image: google/dart:latest
volumes:
- /home/docker-user/project_cah_fun_game:/workspace:cached
command: /bin/sh -c "while sleep 1000; do :; done"
links:
- web-server
ports:
- 4041:4041
depends_on:
- web-server
web-server:
image: google/dart:latest
volumes:
# Mount the root folder that contains .git
- /home/docker-user/project_cah_fun_game:/workspace:cached
command: /bin/sh -c "while sleep 1000; do :; done"
ports:
- 4040:4040