mirror of
https://github.com/budtmo/docker-android.git
synced 2026-07-31 04:07:25 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0702f34bd3 | ||
|
|
fbd31b9076 | ||
|
|
40864137ee | ||
|
|
c5cce78990 | ||
|
|
5002255cd8 | ||
|
|
f570984135 | ||
|
|
80e22c2b1c | ||
|
|
064e9c4f37 | ||
|
|
7db92991ab | ||
|
|
47eafe24e1 | ||
|
|
8875d83305 | ||
|
|
984f5ed69e | ||
|
|
a02375de57 | ||
|
|
363fc77b87 |
@@ -11,7 +11,7 @@ Advantages of using this projects
|
||||
---------------------------------
|
||||
1. Emulator with different device profile and skins, such as Samsung Galaxy S6, LG Nexus 4, HTC Nexus One and more.
|
||||
2. Support vnc to be able to see what happen inside docker container
|
||||
3. Support log sharing feature where all logs can be accessed from web-UI
|
||||
3. Support log sharing feature where all logs can be accessed from web-UI
|
||||
4. Ability to control emulator from outside container by using adb connect
|
||||
5. Integrated with other cloud solutions, e.g. [Genymotion Cloud](https://www.genymotion.com/cloud/)
|
||||
6. It can be used to build Android project
|
||||
@@ -74,6 +74,14 @@ Quick Start
|
||||
docker exec -it android-container cat device_status
|
||||
```
|
||||
|
||||
Persisting data
|
||||
-----------
|
||||
|
||||
The default behaviour is to destroy the emulated device on container restart. To persist data, you need to mount a volume at `/home/androidusr`:
|
||||
```
|
||||
docker run -v data:/home/androidusr budtmo/docker-android:emulator_11.0
|
||||
```
|
||||
|
||||
WSL2 Hardware acceleration (Windows 11 only)
|
||||
-----------
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
autopep8==2.0.4
|
||||
autopep8==2.1.0
|
||||
click==8.1.7
|
||||
coverage==7.4.3
|
||||
coverage==7.5.0
|
||||
mock==5.1.0
|
||||
nose==1.3.7
|
||||
requests==2.31.0
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM appium/appium:v2.5.1-p0
|
||||
FROM appium/appium:v2.5.4-p0
|
||||
|
||||
LABEL maintainer "Budi Utomo <budtmo.os@gmail.com>"
|
||||
|
||||
|
||||
@@ -99,6 +99,8 @@ ENV LOG_PATH=${WORK_PATH}/logs \
|
||||
WEB_LOG_PORT=9000
|
||||
EXPOSE 9000
|
||||
RUN mkdir -p ${LOG_PATH}
|
||||
RUN mkdir -p "${WORK_PATH}/.config/Android Open Source Project" \
|
||||
&& echo "[General]\nshowNestedWarning=false\n" > "${WORK_PATH}/.config/Android Open Source Project/Emulator.conf"
|
||||
|
||||
#=========
|
||||
# Run App
|
||||
|
||||
Reference in New Issue
Block a user