mirror of
https://github.com/budtmo/docker-android.git
synced 2026-04-25 12:15:52 +03:00
[GH-ISSUE #233] Custom appium args #169
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/docker-android#169
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @codefather-labs on GitHub (Mar 29, 2020).
Original GitHub issue: https://github.com/budtmo/docker-android/issues/233
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!