logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Docker实现一个Redis cluster

docker-machine 建立三台虚拟机,first,second,third,third is a worker and the other two are managers as the following picture. 2.You can also encrypt data exchanged between containers on different nodes on the

#redis#docker
docker-machine ssh任然能连接,连接到2376端口似乎不行 ——解决

docker-machine配置虚拟机出现问题Reference:[https://stackoverflow.com/questions/33992729/cannot-get-docker-machine-to-work-with-virtualbox-when-using-cisco-vpn-anyconnec]This machine has been allocated an IP a

Docker的web端管理平台对比(DockerUI 、Shipyard、Portainer、Daocloud)

reference:http://blog.csdn.net/qq273681448/article/details/75007828前言最近,为了方便对命令行过敏的测试或开发人员,我决定部署一个可视化的管理平台来管理docker,在我重装十几次系统(当然,只是虚拟机镜像克隆),对比之后,终于选择了一款心仪的管理平台。部署docker环境安装/升级你的Docker环

docker存入和载出image

docker save 和 docker loadDocker 还提供了 docker load 和 docker save 命令,用以将镜像保存为一个 tar 文件,然后传输到另一个位置上,再加载进来。这是在没有 Docker Registry 时的做法,现在已经不推荐,镜像迁移应该直接使用 Docker Registry,无论是直接使用 Docker Hub 还是使用内网私有 Registry

#docker
Docker的web端管理平台对比(DockerUI 、Shipyard、Portainer、Daocloud)

reference:http://blog.csdn.net/qq273681448/article/details/75007828前言最近,为了方便对命令行过敏的测试或开发人员,我决定部署一个可视化的管理平台来管理docker,在我重装十几次系统(当然,只是虚拟机镜像克隆),对比之后,终于选择了一款心仪的管理平台。部署docker环境安装/升级你的Docker环

Error response from daemon: rpc error: code = 14 desc = grpc: the connection is unavailable

I have two servers in Docker Swarm, but when I need to add a third server - I get the result:docker-machine加入节点时出现错误:Error response from daemon: rpc error: code = 14 desc = grpc: the connection is

#docker
如何获取 docker 容器(container)的 ip 地址

1. 进入容器内部后cat /etc/hosts会显示自己以及(– link)软连接的容器IP2.使用命令docker inspect --format '{{ .NetworkSettings.IPAddress }}' <container-ID>或docker inspect <container id>或docker inspect -f '{{range .NetworkS

到底了