-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
42 lines (41 loc) · 1.11 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
version: '3'
# run with: UIDV=$(id -u) GIDV=$(id -g) docker-compose up
services:
android-emu:
container_name: andoird-emu
#image: budtmo/docker-android-x86-5.0.1
#image: budtmo/docker-android-x86-5.1.1
#image: budtmo/docker-android-x86-6.0
#image: budtmo/docker-android-x86-7.0
#image: budtmo/docker-android-x86-7.1.1
#image: budtmo/docker-android-x86-8.0
#image: budtmo/docker-android-x86-8.1
image: budtmo/docker-android-x86-9.0
privileged: true
ports:
- 6080:6080
- 5554:5554
- 5555:5555
environment:
- DEVICE=Samsung Galaxy S6
nsvue:
container_name: nsvue
build:
context: .
dockerfile: Dockerfile
args:
USER_ID: ${UIDV}
GROUP_ID: ${GIDV}
command: bash
user: ${UIDV}:${GIDV}
privileged: true
volumes:
- /dev/bus/usb:/dev/bus/
- ${PWD}:/usr/src/app
- /usr/src/app/node_modules
ports:
- 40000:40000
stdin_open: true
tty: true
depends_on:
- android-emu