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缓存文件等。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)