Error response from daemon: OCI runtime create failed: container_linux.go:370: starting container pr

Error response from daemon: OCI runtime create failed: container_linux.go:370: starting container process caused: exec: “-v”: executable file not found in $PATH: unknown.

哈哈哈没想到,你们也遇到这个问题,如果错误内容与我上方黄色标记的一样,那么恭喜你,你找到组织了。

容器名称必须在所有的参数之后。
容器名称必须在所有的参数之后。
容器名称必须在所有的参数之后。

// 错误
docker run  -v $(pwd):/src -it
// 正解
docker run -v $(pwd):/src -it 

不用客气,都是过来人。

你可能感兴趣的:(docker,python)