From f1d7fe9cd3a9e256aa7cb80700f517badd330025 Mon Sep 17 00:00:00 2001 From: Jing Li Date: Sat, 20 Jan 2024 23:17:36 +0100 Subject: [PATCH] Update README --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 937ba1b..4aad36c 100644 --- a/README.md +++ b/README.md @@ -118,10 +118,9 @@ More information about **storage driver**: ```bash # build the image # set the working directory to the project's root directory first -# replace `` with your desired platform -docker build --build-arg PLATFORM= -t android-sdk android-sdk +docker build -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 @@ -172,7 +171,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 --build-arg PLATFORM= -t android-sdk android-sdk + docker build -t android-sdk android-sdk # Run a container docker run -d -p 2222:22 -v $(pwd)/sdk:/opt/android-sdk:ro android-sdk