Docker安装的镜像没有关机命令怎么办
安装的Docker
的官方镜像ubuntu18.04
PS C:\Users\17293> docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu 18.04 4eb8f7c43909 2 weeks ago 63.1MB
PS C:\Users\17293> docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
12910e0535ad ubuntu:18.04 "bash" 2 hours ago Up 2 hours mineos
试了poweroff
、shutdown
和halt
都没有,那我怎么关机
呢?
root@12910e0535ad:/# uname -a
Linux 12910e0535ad 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
root@12910e0535ad:/# poweroff
bash: poweroff: command not found
root@12910e0535ad:/# shutdown
bash: shutdown: command not found
root@12910e0535ad:/# halt
bash: halt: command not found
root@12910e0535ad:/#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
docker stop xxx
docker kill xxx
如果你的镜像运行时命令是
docker run --rm
,退出之后修改就消失了,如果不是,退出之后,还能继续运行。