note 1:
stop and remove a container
docker ps
docker stop containerID
docker rm containerID
Under normal circumstances ,you can’t remove the container dosen’t at stop status. if you need
you can add a –服务器托管网d (force) param to carry out it .
docker rm -f containerID
note 2 :
registry VS repository
Docker 的术语中,”registry” 和 “repository” 有着不同的含义:
Docker Registr服务器托管网y 是存储 Docker 镜像的服务。它是一个中央的存储和分发镜像的地方。Docker Hub 和 Google Container Registry 就是 Docker Registry 的例子。
Docker Repository 则是存储在 Docker Registry 中的镜像的集合。一个 Repository 可以包含多个版本的同一个 Docker 镜像,每个版本由一个不同的标签(tag)标识。
所以,当你想要分享一个 Docker 镜像时,你需要将它推送(push)到一个 Docker Registry,而不是一个 Docker Repository。然后其他人可以从这个 Docker Registry 拉取(pull)你的镜像。当他们拉取镜像时,他们需要指定 Docker Registry、Docker Repository 和镜像的标签,例如
registry.example.com/my-repository:my-tag
note 3 :
list locally images
docker image ls
note 4 :
renamea image
docker tag [localImage] [YOUR-USER-NAME/renamedimage]
note 5:
push a image to dockerHub
docker push gyk666/myImage[:mytag]
#If you don't specify a tag, Docker uses a tag called latest.
note 6:
remove a image
docker rmi
remove all of unuse images
docker image prune -a
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net