From d821b51eeab35133b00f7152024d79a1de1f7499 Mon Sep 17 00:00:00 2001 From: Jing Li Date: Fri, 26 Jan 2024 22:54:53 +0100 Subject: [PATCH] Revert "Update README" This reverts commit f1d7fe9cd3a9e256aa7cb80700f517badd330025. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4aad36c..937ba1b 100644 --- a/README.md +++ b/README.md @@ -118,9 +118,10 @@ More information about **storage driver**: ```bash # build the image # set the working directory to the project's root directory first -docker build -t android-sdk android-sdk +# replace `` with your desired platform +docker build --build-arg PLATFORM= -t android-sdk android-sdk # or you can also pass specific tool version as you wish (optional, while there is default version) -docker build --build-arg PLATFORM= --build-arg JDK_VERSION= --build-arg GRADLE_VERSION= --build-arg KOTLIN_VERSION= --build-arg ANDROID_SDK_VERSION= -t android-sdk android-sdk +docker build --build-arg PLATFORM= --build-arg JDK_VERSION= --build-arg GRADLE_VERSION= --build-arg KOTLIN_VERSION= --build-arg ANDROID_SDK_VERSION= -t android-sdk android-sdk # or pull the image instead of building on your own docker pull thyrlian/android-sdk @@ -171,7 +172,7 @@ It is also possible if you wanna connect to container via SSH. There are three # Put your `id_rsa.pub` under `android-sdk/accredited_keys` directory (as many as you want) # Build an image, then an `authorized_keys` file will be composed automatically, based on the keys from `android-sdk/accredited_keys` directory - docker build -t android-sdk android-sdk + docker build --build-arg PLATFORM= -t android-sdk android-sdk # Run a container docker run -d -p 2222:22 -v $(pwd)/sdk:/opt/android-sdk:ro android-sdk