I want to run a container using the python docker with a persistent shared folder. The command line to do so is as follow :
docker run --rm -ti -v /home/docker:/container_shared_folder ubuntu:14.04 bash -c my_command
can you please help me to realize that using docker-py ?
Regards !
Can you try specifying volumes in the following manner :