docker的一些操作命令
容器container
镜像image
1 列出所有容器container
docker ps
docker container ls
docker container list
上面三个命令,效果是一样的,后面可以加参数-a 列出所有的,包括已停止的。
-a, --all:列出所有的容器,包括停止运行的容器
-s, --size:显示容器的大小
-q, --quiet:仅显示容器ID
-f, --filter:过滤器,支持key=value的格式进行过滤,多个过滤器使用-f "key=value" -f "key=value"格式
比如:
docker ps -a
docker ps -a -s
2 停止容器container:
docker stop 'NAMES'
比如:
docker stop qinglong
3 删除容器CONTAINER:
由于CONTAINER ID很长,使用docker ps命令时,是看不到完整的CONTAINER ID的。
所以要看到完整的CONTAINER ID,可以是用如下命令:
docker inspect 'container name' | grep Id
比如:
docker inspect auto_spy | grep Id
"Id": "3b542142b661142c8a2a7bd70bd4a4f0df75d4335a85f7d90978e198e152c52d",
删除的命令:
docker rm 'CONTAINER NAME'
但是,docker不能直接删除运行种的CONTAINER,要先停止
比如:
docker stop auto-proxy-pool //一定要先停止,再删除
docker rm auto-proxy-pool
4 列出镜像image
镜像的ID长度比较短,可以完整的被看到。
如何查看image id呢?
docker images能查看所有的镜像。
docker image ls也可以,一样的效果。
docker images
docker image ls
5 删除镜像image
除了像上面,直接docker images查看ID,还可以通过镜像image名称获取ID,比如:
docker images -q --filter reference=whyour/qinglong
5997b3824cbe
删除镜像,是通过IMAGE的ID来删除的:
docker rmi 'IMAGE ID'
docker image和docker images命令的区别:
docker images --help
Usage: docker images [OPTIONS] [REPOSITORY[:TAG]]
List images
Options:
-a, --all Show all images (default hides intermediate images)
--digests Show digests
-f, --filter filter Filter output based on conditions provided
--format string Pretty-print images using a Go template
--no-trunc Don't truncate output
-q, --quiet Only show image IDs
docker image --help
Usage: docker image COMMAND
Manage images
Commands:
build Build an image from a Dockerfile
history Show the history of an image
import Import the contents from a tarball to create a filesystem image
inspect Display detailed information on one or more images
load Load an image from a tar archive or STDIN
ls List images
prune Remove unused images
pull Pull an image or a repository from a registry
push Push an image or a repository to a registry
rm Remove one or more images
save Save one or more images to a tar archive (streamed to STDOUT by default)
tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
Run 'docker image COMMAND --help' for more information on a command.