我正在尝试将docker容器作为
运行docker run -d -p 9088:9088 --name abc -h abc -v /some/location:/some/location artifactory/abc
/some/location
有一个容器将执行的脚本。上面的命令给出了错误
docker: Error response from daemon: oci runtime error:
container_linux.go:262: starting container process caused "exec:
\"/some/location/myScript\": stat /some/location/myScript: no such file or directory".
但是当我做的时候
sudo docker run -d -p 9088:9088 --name abc -h abc -v /some/location:/some/location artifactory/abc
容器启动并运行正常。但是我不想使用sudo,因为我没有将它用于任何其他容器。我只想把它作为docker运行。我怎么做?请注意,我有
chmod 777 /some/location
为什么停靠码头无法访问myScript
?