>PROBLEM
Attempt to map a volume fails retuning:
docker: Error response from daemon: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "-v": executable file not found in $PATH: unknown.
>SOLUTION
WRONG:
docker run -it --name extodo alsdias/express_todo -v C:\data:/home
RIGHT:
docker run -it --name extodo -v C:\data:/home alsdias/express_todo
>ENV
w10
docker
No comments:
Post a Comment