Created
April 27, 2026 13:02
-
-
Save karthiks/4643f0c39288ba17c0fb06d0e124e138 to your computer and use it in GitHub Desktop.
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
| # Reference config for ReDroid in docker-compose | |
| # This one is likely resource intensive. | |
| # When I added another service my Docker started restarting because of resource contention with host OS having only 16GB RAM. | |
| services: | |
| redroid: | |
| image: redroid/redroid:16.0.0-latest | |
| container_name: redroid | |
| restart: unless-stopped | |
| privileged: true | |
| ports: | |
| - "5555:5555" | |
| volumes: | |
| - "./redroid-data:/data" | |
| command: | |
| - "androidboot.redroid_width=1080" | |
| - "androidboot.redroid_height=1920" | |
| - "androidboot.redroid_magisk=1" | |
| - "androidboot.redroid_fake_wifi=1" | |
| - "androidboot.redroid_enable_input_subsys=1" | |
| - "ro.build.characteristics=tablet" | |
| - "ro.debuggable=1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment