docker-android
docker-android copied to clipboard
Custom appium args
hey! I use this options:
docker run --privileged -p 6080:6080 -p 4723:4723 -p 5554:5554 -p 5555:5555 -e DEVICE="Nexus 5" -e AUTO_RECORD=false -e APPIUM=true -e CONNECT_TO_GRID=false -e APPIUM_HOST="127.0.0.1" -e APPIUM_PORT=4723 -e GOOGLE_PLAY_SERVICE="12.8.74" -e GOOGLE_PLAY_STORE="11.0.50" --name android-container budtmo/docker-android-x86-10.0
and i want to add custom appium arguments like --dont-stop-app-on-reset --no-reset for saving my android session after reboot. i try to use something like that:
-e APPIUM_ARGS="--dont-stop-app-on-reset --no-reset"
but it don't works.
so how i can add custom args for appium?
thanks!