Last active
August 29, 2025 18:40
-
-
Save mnabila/4a9b640e57ee716fa256f90fd9b97550 to your computer and use it in GitHub Desktop.
create docker container for redroid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/bin/env bash | |
| docker volume create redroid_data | |
| docker create --name android13 --privileged -v redroid_data:/data -p 5555:5555 \ | |
| redroid/redroid:13.0.0-latest \ | |
| androidboot.redroid_width=1080 \ | |
| androidboot.redroid_height=1920 \ | |
| androidboot.redroid_dpi=441 \ | |
| androidboot.use_memfd=true \ | |
| ro.dalvik.vm.native.bridge=libhoudini.so |
Author
Author
command for running image from https://github.com/ayasa520/redroid-script
docker volume create redroid_data
docker create --name android13 --privileged -v redroid_data:/data -p 5555:5555 \
redroid/redroid:13.0.0-latest \
androidboot.redroid_width=1080 \
androidboot.redroid_height=1920 \
androidboot.redroid_dpi=441 \
androidboot.use_memfd=true \
ro.product.cpu.abilist=x86_64,x86,arm64-v8a,armeabi-v7a,armeabi \
ro.product.cpu.abilist32=x86,armeabi-v7a,armeabi \
ro.product.cpu.abilist64=x86_64,arm64-v8a \
ro.dalvik.vm.native.bridge=libhoudini.so \
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/remote-android/redroid-doc.git