mirror of
https://github.com/budtmo/docker-android.git
synced 2026-07-31 04:07:25 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7a4933c63a | ||
|
|
e268a43141 | ||
|
|
87bebdf4ea | ||
|
|
52642214ed | ||
|
|
f0985a3898 | ||
|
|
b082c0545f | ||
|
|
6625803431 | ||
|
|
6918f1519f | ||
|
|
92c655cad2 | ||
|
|
9ad0f32d93 | ||
|
|
e77bb73077 | ||
|
|
6e9d4767f6 | ||
|
|
77f1be5bdd |
@@ -0,0 +1,40 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: docker
|
||||
directory: "/docker"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: '01:00'
|
||||
timezone: "Europe/Berlin"
|
||||
commit-message:
|
||||
prefix: "[docker] "
|
||||
target-branch: "master"
|
||||
open-pull-requests-limit: 99
|
||||
reviewers:
|
||||
- "budtmo"
|
||||
|
||||
- package-ecosystem: pip
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: '01:00'
|
||||
timezone: "Europe/Berlin"
|
||||
commit-message:
|
||||
prefix: "[pip] "
|
||||
target-branch: "master"
|
||||
open-pull-requests-limit: 99
|
||||
reviewers:
|
||||
- "budtmo"
|
||||
|
||||
- package-ecosystem: github-actions
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: '01:00'
|
||||
timezone: "Europe/Berlin"
|
||||
commit-message:
|
||||
prefix: "[github-action] "
|
||||
target-branch: "master"
|
||||
open-pull-requests-limit: 99
|
||||
reviewers:
|
||||
- "budtmo"
|
||||
@@ -73,6 +73,37 @@ Quick Start
|
||||
docker exec -it android-container cat device_status
|
||||
```
|
||||
|
||||
WSL2 Hardware acceleration (Windows 11 only)
|
||||
-----------
|
||||
|
||||
Credit goes to [Guillaume - The Parallel Interface blog](https://www.paralint.com/2022/11/find-new-modified-and-unversioned-subversion-files-on-windows)
|
||||
|
||||
[Microsoft - Advanced settings configuration in WSL](https://learn.microsoft.com/en-us/windows/wsl/wsl-config)
|
||||
|
||||
|
||||
1. Add yourself to the `kvm` usergroup.
|
||||
```
|
||||
sudo usermod -a -G kvm ${USER}
|
||||
```
|
||||
|
||||
2. Add necessary flags to `/etc/wsl2.conf` to their respective sections.
|
||||
```
|
||||
[boot]
|
||||
command = /bin/bash -c 'chown -v root:kvm /dev/kvm && chmod 660 /dev/kvm'
|
||||
|
||||
[wsl2]
|
||||
nestedVirtualization=true
|
||||
```
|
||||
3. Restart WSL2 via CMD prompt or Powershell
|
||||
```
|
||||
wsl --shutdown
|
||||
```
|
||||
|
||||
|
||||
`command = /bin/bash -c 'chown -v root:kvm /dev/kvm && chmod 660 /dev/kvm'` sets `/dev/kvm` to `kvm` usergroup rather than the default `root` usergroup on WSL2 startup.
|
||||
|
||||
`nestedVirtualization` flag is only available to Windows 11.
|
||||
|
||||
Use-Cases
|
||||
---------
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
autopep8==2.0.2
|
||||
click==8.1.3
|
||||
coverage==7.2.5
|
||||
mock==5.0.2
|
||||
click==8.1.6
|
||||
coverage==7.2.7
|
||||
mock==5.1.0
|
||||
nose==1.3.7
|
||||
requests==2.31.0
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM appium/appium:v2.0.b71-p0
|
||||
FROM appium/appium:v2.0.0-p1
|
||||
|
||||
LABEL maintainer "Budi Utomo <budtmo.os@gmail.com>"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user