Description
Operating System
QNAP NAS with QTS 5.2.0.2860
Docker Image
budtmo/docker-android:emulator_11.0
Expected behaviour
the docker should start automatically
Actual behaviour
Failed to start container "docker-android". Error message: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "/home/androidusr/docker-android/mixins/scripts/run.sh": stat /home/androidusr/docker-android/mixins/scripts/run.sh: no such file or directory: unknown
Logs
Created the docker with compose file below, the application created but failed to start
version: '3.8'
services:
android-emulator:
image: budtmo/docker-android:emulator_11.0
container_name: docker-android
ports:
- "6080:6080"
environment:
- EMULATOR_DEVICE=Samsung\ Galaxy\ S10
- WEB_VNC=true
- EMULATOR_ADDITIONAL_ARGS=-cores\ 6\ -memory\ 5120
- EMULATOR_DATA_PARTITION=9000m
volumes:
- /share/CACHEDEV1_DATA/Container/android-emu:/home/androidusr
devices:
- /dev/kvm
restart: always