1.docker镜像管理


  1. 镜像管理
  2. 容器管理
  3. 网络管理

  1. 搜索镜像

    docker search mysql

  2. 下载镜像

    docker pull mysql

  3. 删除一个镜像

    docker rmi mysql

  4. 查询所有镜像

    docker images

    docker images -a

    docker images --no-trunc
    展示所有信息

  5. 提交镜像到私有仓库或者docker hub

    docker push

  6. 更改的镜像内容,提交为一个新的镜像

    docker commit test01 ubuntu:self
    test01 是容器名称;ubuntu: 镜像名称;self:是TAG

  7. 导出

    docker export test01 >test01.tar

    docker save mysql > mysql.tar

  8. 导入

    docker import test01.tar ubuntu:self

    docker load -i mysql.tar

你可能感兴趣的:(1.docker镜像管理)