From 6d47acff4febdf85fdb04f85b2a8f991f30299de Mon Sep 17 00:00:00 2001 From: butomo1989 Date: Thu, 22 Dec 2016 14:36:09 +0100 Subject: [PATCH] Edited README.md --- README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index caf4bcd..2e5b877 100644 --- a/README.md +++ b/README.md @@ -16,32 +16,32 @@ Quick Start 1. Run docker-appium with command: -```bash -docker run -d -p 4723:4723 -v :/target_apk -e ANDROID_VERSION= --name appium-container butomo1989/docker-appium -``` + ```bash + docker run -d -p 4723:4723 -v :/target_apk -e ANDROID_VERSION= --name appium-container butomo1989/docker-appium + ``` -***Note: There is an example apk in folder example.*** + ***Note: There is an example apk in folder example.*** -An Example: + An Example: -```bash -docker run -d -p 4723:4723 -v $PWD/example/sample_apk:/target_apk -e ANDROID_VERSION=4.2.2 --name appium-container docker-android-appium -``` + ```bash + docker run -d -p 4723:4723 -v $PWD/example/sample_apk:/target_apk -e ANDROID_VERSION=4.2.2 --name appium-container docker-android-appium + ``` 2. See the docker logs with command: -```bash -docker logs appium-container -f -``` + ```bash + docker logs appium-container -f + ``` 3. Wait until you see this following example messages in logs that showing that appium server is ready to use: -```bash -INFO:android_appium:Android emulator is created -INFO:android_appium:android emulator name: emulator_4.2.2 -[Appium] Welcome to Appium v1.6.3 -[Appium] Appium REST http interface listener started on 0.0.0.0:4723 -``` + ```bash + INFO:android_appium:Android emulator is created + INFO:android_appium:android emulator name: emulator_4.2.2 + [Appium] Welcome to Appium v1.6.3 + [Appium] Appium REST http interface listener started on 0.0.0.0:4723 + ``` 4. Run your UI tests by using docker-appium.