标签:删除 remove 市场 info hello 技术 created arc col
列出镜像:
docker images
REPOSITORY: 镜像所在仓库名称
TAG: 镜像版本
IMAGE ID: 镜像id
CREATED: 镜像创建时间
SIZE: 镜像大小
唯一表示一个镜像: repository:tag 或者imageId
网络中搜索需要的镜像:
docker search 镜像名称
也可以去镜像市场找: https://hub.docker.com/
拉取镜像:
docker pull centos
删除指定镜像:
docker rmi repository:tag 或者docker rmi imageID\
###遇到的问题:
Error response from daemon: conflict: unable to remove repository reference "hello-world:latest" (must force) - container ddf721da7e52 is using its referenced image d1165f221234
如果出现这种问题,就要先删除容器, docker rm ddf721da7e52 再删除镜像 docker rmi d1165f221234
###
标签:删除 remove 市场 info hello 技术 created arc col
原文地址:https://www.cnblogs.com/dayanjing/p/14846050.html