美文网首页Docker容器
docker常用功能和命令

docker常用功能和命令

作者: 旅行者xy | 来源:发表于2019-03-12 22:10 被阅读3次
    • 根据Dockerfile文件构建镜像image

    docker build -t walkerxy/mysql:v02 .

    walkerxy代表镜像所属的组,mysql为镜像的名称,冒号后面为tag,一般做为版本标识

    • 上传镜像image到镜像仓库中
    1. 首先需要登录到镜像服务器,这里以阿里云镜像仓库

    docker login registry.cn-hangzhou.aliyuncs.com #登录阿里云镜像仓库

    接下来,按提示输入用户名和密码

    1. 为镜像设置标签:

    docker tag 6d1d92c651a0 registry.cn-hangzhou.aliyuncs.com/walkerxy/mysql:v02

    6d1d92c651a0为镜像的ID,registry.cn-hangzhou.aliyuncs.com为镜像仓库地址,walkerxy为命名空间(组),mysql:v02为仓库名称(镜像名称)和版本号

    1. 上传镜像

    docker push registry.cn-hangzhou.aliyuncs.com/walkerxy/mysql:v02

    • 从仓库中拉取镜像

    docker pull registry.cn-hangzhou.aliyuncs.com/walkerxy/mysql:v02

    相关文章

      网友评论

        本文标题:docker常用功能和命令

        本文链接:https://www.haomeiwen.com/subject/ypvopqtx.html