mirror of
https://github.com/HQarroum/docker-android.git
synced 2026-07-30 03:12:18 +00:00
99 lines
2.4 KiB
YAML
99 lines
2.4 KiB
YAML
version: "4"
|
|
services:
|
|
android-emulator:
|
|
build:
|
|
context: .
|
|
args:
|
|
- API_LEVEL=34
|
|
- CMD_LINE_VERSION=11076708_latest
|
|
- IMG_TYPE=google_apis
|
|
ports:
|
|
- 5554:5554
|
|
- 5555:5555
|
|
environment:
|
|
- DISABLE_ANIMATION=false
|
|
- DISABLE_HIDDEN_POLICY=true
|
|
- SKIP_AUTH=false
|
|
#- ANDROID_ADB_SERVER_ADDRESS=host.docker.internal
|
|
- MEMORY=16384
|
|
- CORES=16
|
|
privileged: true
|
|
tty: true
|
|
stdin_open: true
|
|
volumes:
|
|
- ./keys/adbkey:/root/.android/adbkey:ro
|
|
- ./keys/adbkey.pub:/root/.android/adbkey.pub:ro
|
|
- ./android_avd:/data
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
android-emulator-cuda:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile.gpu
|
|
args:
|
|
- API_LEVEL=34
|
|
- CMD_LINE_VERSION=11076708_latest
|
|
- IMG_TYPE=google_apis
|
|
ports:
|
|
- 5554:5554
|
|
- 5555:5555
|
|
environment:
|
|
- DISABLE_ANIMATION=false
|
|
- DISABLE_HIDDEN_POLICY=true
|
|
- SKIP_AUTH=false
|
|
#- ANDROID_ADB_SERVER_ADDRESS=host.docker.internal
|
|
- MEMORY=16384
|
|
- CORES=16
|
|
privileged: true
|
|
tty: true
|
|
stdin_open: true
|
|
volumes:
|
|
- ./keys/adbkey:/root/.android/adbkey:ro
|
|
- ./keys/adbkey.pub:/root/.android/adbkey.pub:ro
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities: [gpu]
|
|
|
|
android-emulator-cuda-store:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile.gpu
|
|
args:
|
|
- API_LEVEL=34
|
|
- CMD_LINE_VERSION=11076708_latest
|
|
- IMG_TYPE=google_apis_playstore
|
|
ports:
|
|
- 5554:5554
|
|
- 5555:5555
|
|
environment:
|
|
- DISABLE_ANIMATION=false
|
|
- DISABLE_HIDDEN_POLICY=true
|
|
- SKIP_AUTH=false
|
|
#- ANDROID_ADB_SERVER_ADDRESS=host.docker.internal
|
|
- MEMORY=16384
|
|
- CORES=16
|
|
privileged: true
|
|
tty: true
|
|
stdin_open: true
|
|
volumes:
|
|
- ./keys/adbkey:/root/.android/adbkey:ro
|
|
- ./keys/adbkey.pub:/root/.android/adbkey.pub:ro
|
|
# volumes:
|
|
# - ./:/mnt
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities: [gpu]
|