Docker: mounting a dir from host into container leads into errors

118 Views Asked by At

I have some trouble to run a docker android emulation from this project: https://github.com/thyrlian/AndroidSDK

Since I am a Linux (using Ubuntu 18) noob maybe I am just too stupid... I'm failing with mounting the image to my container...in the tutorial its done with this command:

docker run -it --rm -v $(pwd)/sdk:/sdk thyrlian/android-sdk bash -c 'cp -a $ANDROID_HOME/. /sdk'

So i downloaded android-sdk-tools and extracted it into my root dir named "sdk". so my command looked like this:

docker run -it --rm -v sdk bash -c 'cp -a $ANDROID_HOME/. /sdk'

But than I got tons of errors (those are just a few since they are all similiar):

cp: can't open '/./sys/bus/isa/uevent': Permission denied cp: can't open '/./sys/bus/isa/drivers_probe': Permission denied cp: can't open '/./sys/bus/xen/uevent': Permission denied cp: can't open '/./sys/bus/xen/drivers_probe': Permission denied cp: can't open '/./sys/bus/serio/uevent': Permission denied

0

There are 0 best solutions below