From 2535a55c81586a23e289acdc7c06964d0bfc7568 Mon Sep 17 00:00:00 2001 From: abellelus7074 Date: Mon, 24 Aug 2026 12:18:39 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=EC=9D=BC=EC=9D=84=20"/"=20=EB=A1=9C?= =?UTF-8?q?=20=EC=97=85=EB=A1=9C=EB=93=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e7aef71 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,26 @@ +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