Files
docker-android2/docker-compose.yml
T
周立志 fc1d197d0e fix:ERROR | x86_64 emulation currently requires hardware acceleration!
CPU acceleration status: /dev/kvm is not found: VT disabled in BIOS or KVM kernel module not loaded
2026-05-07 18:15:10 +08:00

101 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
- 127.0.0.1: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"
devices:
- /dev/kvm:/dev/kvm
android-emulator-cuda:
build:
context: .
dockerfile: ./Dockerfile.gpu
args:
- API_LEVEL=34
- CMD_LINE_VERSION=11076708_latest
- IMG_TYPE=google_apis
ports:
- 5554:5554
- 127.0.0.1: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
- 127.0.0.1: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]