-
Notifications
You must be signed in to change notification settings - Fork 0
Home
mgasiorowski edited this page Jul 4, 2014
·
3 revisions
First build the container and give a name to the resulting image:
docker build -t jenkins/android .
Run in background:
docker run -d -P --name android_project_name jenkins/android
You can start an interactive session to test new commands with:
docker runt -P jenkins/android /bin/bash
Check IP address:
docker inspect --format '{{ .NetworkSettings.Gateway }}' android_project_name
Check port:
docker port android_project_name 22