I followed the instructions, but as soon as I run the docker run command on the gotsunami/fdroid image, I get an error.
This is the bash script that I used:
mkdir /home/debian/projects/fdroid-repo
APK_REPO=/home/debian/projects/fdroid-repo
docker run -d \
--name fdroid-repo \
-v $APK_REPO:/apk/repo \
config.py:/apk/config.py \
gotsunami/fdroid
This is the error that I get:
docker: Error response from daemon: readdirent: not a directory.
The nginx docker container runs without any problems and so do all my other docker containers.
Any ideas what could be causing this?
I followed the instructions, but as soon as I run the
docker runcommand on thegotsunami/fdroidimage, I get an error.This is the bash script that I used:
mkdir /home/debian/projects/fdroid-repo APK_REPO=/home/debian/projects/fdroid-repo docker run -d \ --name fdroid-repo \ -v $APK_REPO:/apk/repo \ config.py:/apk/config.py \ gotsunami/fdroidThis is the error that I get:
The nginx docker container runs without any problems and so do all my other docker containers.
Any ideas what could be causing this?