Skip to content

Commit

Permalink
Revert "Update README"
Browse files Browse the repository at this point in the history
This reverts commit f1d7fe9.
  • Loading branch information
thyrlian committed Jan 26, 2024
1 parent f1d7fe9 commit d821b51
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<amd64|arm64>` with your desired platform
docker build --build-arg PLATFORM=<amd64|arm64> -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=<amd64|arm64> --build-arg JDK_VERSION=<jdk_version> --build-arg GRADLE_VERSION=<gradle_version> --build-arg KOTLIN_VERSION=<kotlin_version> --build-arg ANDROID_SDK_VERSION=<android_sdk_version> -t android-sdk android-sdk
docker build --build-arg PLATFORM=<platform_name> --build-arg JDK_VERSION=<jdk_version> --build-arg GRADLE_VERSION=<gradle_version> --build-arg KOTLIN_VERSION=<kotlin_version> --build-arg ANDROID_SDK_VERSION=<android_sdk_version> -t android-sdk android-sdk
# or pull the image instead of building on your own
docker pull thyrlian/android-sdk

Expand Down Expand Up @@ -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=<platform_name> -t android-sdk android-sdk

# Run a container
docker run -d -p 2222:22 -v $(pwd)/sdk:/opt/android-sdk:ro android-sdk
Expand Down

0 comments on commit d821b51

Please sign in to comment.