docker exec 系统找不到指定的路径。

相关问题和答案

>docker exec -it a1 echo "hello..." > /var/www/html/index.html
系统找不到指定的路径。 >docker exec -it a1 bash -c 'echo "hello..." > /var/www/html/index.html'
系统找不到指定的路径。 >docker exec -it a1 bash -c "echo 'hello...' > /var/www/html/index.html" >docker exec -it a1 cat /var/www/html/index.html
hello...

内置的shell命令,不能将其设置为运行的命令.必须使用:docker exec -it a1 bash -c "<bash>"

上一篇:Hadoop01【介绍】


下一篇:selenium webdriver学习(六)------------如何得到弹出窗口