Docker Docker创建Zookeeper集群 docker官方下载Zookeeper镜像文件 //pull最新zk docker pull zookeeper Using default tag: latest latest: Pulling f... 07月20日 2,614次阅读 发表评论 阅读全文
Docker Docker使用mysql镜像 Docker下载官方mysql镜像 docker pull mysql 查看mysql镜像信息 docker images mysql latest c7109f74d339 2 weeks ago ... 07月01日 4,182次阅读 1 阅读全文
Docker创建redis镜像 下载redis镜像 docker pull redis 从docker官方拉去redis最新镜像 启动redis镜像 docker run -p 6379:6379 --name redis -v $... 06月19日 Docker 2,991次阅读 发表评论 阅读全文
Docker dockerFile创建案例 #dockerfile 范例编写 #1、基础镜像 FROM centos # 2、维护者信息 MAINTAINER docker_user docker_user@email.com #3、镜像操作指... 06月08日 1,365次阅读 发表评论 阅读全文
Docker Docker命令集锦 docker pull 镜像名称 通过命令下载dockerhub上的官方镜像 例:docker pull centos docker push username/repository:tag 发布镜像... 06月04日 1,304次阅读 发表评论 阅读全文