I think all is in the title, I have an error with the next command :
sudo docker run myimage -ti -v /home/julien/partage/:/home/partage
exec: "-ti": executable file not found in $PATH2015/06/29 10:39:23 Error response from daemon: Cannot start container b5993930417c33ac2a8eac88f665e906ea36ba53a0a36b37903ba09cd1ae033d: exec: "-ti": executable file not found in $PATH
@Idir, you can specify the docker run options before the image name, if you’ll give next to image, docker considered as an executable command . You can check with the command which is given below :-
sudo docker run -ti -v /home/julien/partage:/home/partage myimage
This will be work fine. Just try it and Let me know the status .