本文介绍了docker windows 中的 docker exec的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在跑步时遇到问题
`docker `exec -t sandbox /bin/sh -c 'echo "127.0.0.1 sandbox" >> /etc/hosts'
在 Windows 泊坞窗中.我不断收到以下错误:
in windows docker. I keep getting the following error:
"The system cannot find the path specified"
有人知道我为什么会收到错误消息吗?
Does anyone know why I am getting the error?
推荐答案
我发现使用 "
而不是 '
解决了这个问题:
I found out that using "
instead of '
fixes this:
docker exec -t sandbox /bin/sh -c "echo '127.0.0.1 sandbox' >> /etc/hosts"
这篇关于docker windows 中的 docker exec的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!