Last active
January 11, 2021 12:09
-
-
Save daisuke-nomura/3bd603fb4ea96aa280c5a196e340cd01 to your computer and use it in GitHub Desktop.
Android Emulator docker-compose.yml
This file contains 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
# Works only on Linux | |
# Original docker command is on https://github.com/google/android-emulator-container-scripts | |
version: '3' | |
services: | |
android: | |
image: us-docker.pkg.dev/android-emulator-268719/images/30-google-x64:30.1.2 | |
ports: | |
- '8554:8554/tcp' | |
- '5555:5555/tcp' | |
devices: | |
- '/dev/kvm' | |
environment: | |
ADBKEY: PASTE_YOUR_ADBKEY # cat ~/.android/adbkey |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment