有没有办法将本地docker镜像复制到Minikube docker环境?
目前,我通过在 minikube 本身中使用 build 命令创建了一个 docker 映像。但我需要知道是否有任何方法可以将我的系统 docker 守护进程中的 docker 映像复制到 minikube docker 守护进程环境。我不需要使用 Dockerhub。
Currently i created a docker image by using build command in the minikube itself. But i need to know is there any way to copy the docker image in my system docker daemon to minikube docker daemon environment. I don't need to use Dockerhub.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以通过运行此命令让您的终端使用 minikube 内的 docker 守护进程,
然后您可以构建自己的映像,
有关更多信息,请参阅 https://minikube.sigs.k8s.io/docs/handbook/pushing/
Yes, you can point your terminal to use the docker daemon inside minikube by running this,
Then you can build your own image,
For more info, see https://minikube.sigs.k8s.io/docs/handbook/pushing/