Skip to content

Instantly share code, notes, and snippets.

@REASY
Last active February 10, 2026 02:23
Show Gist options
  • Select an option

  • Save REASY/cfd98f7cfa495968457522d8ed0b698c to your computer and use it in GitHub Desktop.

Select an option

Save REASY/cfd98f7cfa495968457522d8ed0b698c to your computer and use it in GitHub Desktop.
How to run Redroid in GCP with the best performance

How to run Redroid in GCP with the best performance

Use arm64 instance types like n4a and Ubuntu 24.04

Install required packages

sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get -y install linux-modules-extra-`uname -r`

Install Docker

Prepare binder

sudo modprobe binder_linux devices="binder,hwbinder,vndbinder"

Run Redroid in Docker

sudo docker run -d --name redroid15 --privileged \
   -v ~/redroid/data15:/data \
    -p 5555:5555   redroid/redroid:15.0.0_64only-latest androidboot.use_memfd=1 androidboot.redroid_gpu_mode=guest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment