-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (42 loc) · 835 Bytes
/
docker-compose.yml
File metadata and controls
46 lines (42 loc) · 835 Bytes
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
version: '3'
services:
android:
build:
dockerfile: 'cm/docker/android/Dockerfile'
context: .
volumes:
- '.:/ai'
working_dir: '/ai'
android-dev:
build:
dockerfile: 'cm/docker/android-dev/Dockerfile'
context: .
depends_on:
- android
volumes:
- '.:/ai'
working_dir: '/ai'
tty: true
user: $AI_UID
web_app:
build:
dockerfile: 'cm/docker/web_app/Dockerfile'
context: .
volumes:
- '.:/ai'
working_dir: '/ai'
web_app-dev:
build:
dockerfile: 'cm/docker/web_app-dev/Dockerfile'
context: .
depends_on:
- web_app
volumes:
- '.:/ai'
ports:
- "4200:4200"
- "9876:9876"
working_dir: '/ai'
tty: true
user: $AI_UID
command: npm --prefix=./source/web_app/app start