docker 基本命令
Posted pengranxindong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker 基本命令相关的知识,希望对你有一定的参考价值。
帮助命令
docker version #显示docker的版本信息
docker info #显示docker的系统信息,包括镜像和容器的数量
docker 命令 --help #万能命令
镜像命名
docker images 查看所有本地的主机上的镜像
[root@localhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE hello-world latest bf756fb1ae65 6 months ago 13.3kB
解释
REPOSITORY 镜像的仓库源
TAG 镜像的标签
IMAGE ID 镜像的id
CREATED 镜像的创建时间
SIZE 镜像的大小
-a, --all #列出所有镜像
-q, --quiet #只显示镜像的id
docker search 搜索镜像
mysql MySQL is a widely used, open-source relation… 9746 [OK] mariadb MariaDB is a community-developed fork of MyS… 3558 [OK]
#可选项
--filter=STARS=3000 #过滤stars等于3000的
docker pull 下载镜像
以上是关于docker 基本命令的主要内容,如果未能解决你的问题,请参考以下文章