Docker-Ubuntu-bash:ping:找不到命令

Docker-Ubuntu-bash:ping:找不到命令,第1张

Docker-Ubuntu-bash:ping:找不到命令

Docker镜像非常小,但是您可以

ping
通过以下方式在您的官方ubuntu Docker镜像中安装:

apt-get updateapt-get install iputils-ping

您可能不需要

ping
图像,而只是想将其用于测试目的。上面的例子将帮助您。

但是,如果需要ping才能存在于映像中,则可以创建一个

Dockerfile
commit
容器,将上述命令运行到新的映像中。

承诺:

docker commit -m "Installed iputils-ping" --author "Your Name <name@domain.com>" ContainerNameOrId yourrepository/imagename:tag

Dockerfile:

FROM ubuntuRUN apt-get update && apt-get install -y iputils-pingCMD bash

请注意,有创建docker映像的最佳做法,例如在之后清除apt缓存文件等。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5015586.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存