27 lines
666 B
YAML
27 lines
666 B
YAML
services:
|
|
redroid:
|
|
image: redroid/redroid:11.0.0-latest
|
|
#image: redroid/redroid:14.0.0-latest
|
|
#image: aureliolo/redroid:14.0.0_amd64_with_gapps
|
|
container_name: redroid14
|
|
stdin_open: true
|
|
tty: true
|
|
privileged: true
|
|
ports:
|
|
- "5555:5555"
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./data:/data
|
|
command:
|
|
- androidboot.hardware=redroid
|
|
- ro.secure=0
|
|
- ro.debuggable=1
|
|
- redroid.width=1024
|
|
- redroid.height=1024
|
|
- redroid.fps=60
|
|
- redroid.gpu.mode=guest
|
|
- ro.product.model=SM-X710
|
|
- ro.product.brand=samsung
|
|
- ro.product.manufacturer=samsung
|
|
restart: unless-stopped
|