
docker&K8S
智航云科技
学如逆水行舟,不进则退
展开
-
Docker神器Portainer-CE,一键高效管理!
当突发告警再次响起时,你可以从容地打开浏览器,在清晰的拓扑图中定位问题节点——这或许就是技术工具存在的终极意义:让复杂归于秩序,让焦虑重归平静。Portainer-ce是一个可视化的容器镜像的图形管理工具,利用Portainer-ce可以轻松构建,管理和维护Docker环境。其中127.0.0.1 是你服务器地址,因为我docker是装在本机的,所以使用的是本机地址127.0.0.1。勾选容器列表容器,可对其进行管理,包括,启动,停止,重启等按钮。点击此容器列表中的此标签,可查看容器日志和详情。原创 2025-02-14 00:15:29 · 392 阅读 · 0 评论 -
docker报错:You have to remove (or rename) that container to be able to reuse that name
错误原因:您必须删除(或重命名)该容器才能重用该名称。查看docker 启动进程。原创 2023-04-05 22:04:50 · 4040 阅读 · 0 评论 -
The push refers to repository [xxx] An image does not exist locally with the tag:xxx
推送远程images仓库的时候报了这个问题:The push refers to repository [docker.io/gwh2020/test]An image does not exist locally with the tag: gwh2020/test解决:docker tag test gwh2020/test原创 2021-05-23 22:12:16 · 5685 阅读 · 0 评论 -
Job for docker.service failed because the control process exited with error
Docker服务启动报错:Job for docker.service failed because the control process exited with error code. See “systemctl status docker.service” and “journalctl -xe” for details.使用命令: systemctl status docker.service查看启动信息如下状态信息:解决: 重装docker把yum包更新到最新 sudo yum u原创 2021-05-23 22:10:18 · 657 阅读 · 0 评论 -
docker 入门
Docker 是一个开源的应用容器引擎,基于 Go 语言 并遵从 Apache2.0 协议开源。 可以让开发者打包他们的应用以及依赖包到一个轻量级、可移植的容器中,然后发布到任何流行的 Linux 机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口(类似 iPhone 的 app),更重要的是容器性能开销极低。Docker 的优点Docker 是一个用于开发,交付和运行应用程序的开放平台。Docker 使您能够将应用程序与基础架构分开,从而可以快速交付软件。借助 Docker,您可原创 2021-05-23 21:48:09 · 1681 阅读 · 21 评论