如何知道我在这里使用哪个docker图像?

时间:2016-12-09 19:16:39

标签: docker

曾几何时,我花了半天的时间测试了几个nginx-ssl-proxy图像,直到找到一个对我来说很好用的图像。如你所见,那是4个月前:

# docker images -a
REPOSITORY                              TAG                 IMAGE ID            CREATED             SIZE
nginx-ssl-proxy                         latest              b143510d7487        4 months ago        182.8 MB

今天我想再次使用该图像并在网上搜索其文档(可能是github页面)。但作为一个"码头搜索nginx-ssl-proxy"显示有大约20个名为nginx-ssl-proxy的docker镜像。我怎么知道我现在正在使用哪一个?

# docker search nginx-ssl-proxy
NAME                                       DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
mapero/nginx-proxy-ssl                     Modified version of nginx-proxy from Jason...   4                    [OK]
ployst/nginx-ssl-proxy                     https://github.com/ployst/docker-nginx-ssl...   2                    [OK]
aaaler/nginx-ssl-proxy                     Simple nginx microservice proxing https re...   2                    [OK]
codedevote/nginx-ssl-proxy-rancher         A docker nginx reverse proxy with ssl term...   2                    [OK]
pavlov/nginx-ssl-proxy                     Nginx reverse proxy for SSL termination in...   1                    [OK]
danieldent/nginx-ssl-proxy                 SSL Front-End Proxy With Automatic Free Ce...   1                    [OK]
centurylinklabs/nginx-ssl-proxy            A few adjustments to the nginx image to ac...   0                    [OK]
etc etc etc

是否有任何docker命令显示有关图像的更多详细信息,如全名,标签等?我甚至尝试在/ var / lib / docker中搜索但找不到任何东西。

1 个答案:

答案 0 :(得分:0)

使用docker inspect

docker inspect --help

Usage:  docker inspect [OPTIONS] CONTAINER|IMAGE|TASK [CONTAINER|IMAGE|TASK...]

Return low-level information on a container, image or task

它会显示所有创建日期,env变量,cmd,入口点,图层等等