ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# docker inspect 命令 该命令用于检查容器或镜像的详细信息。 ## 语法 ``` docker inspect [OPTIONS] NAME|ID [NAME|ID...] ``` ## 实例 查看 test 容器的详细信息 ``` docker inspect test ``` ## 注意 该命令可使用`--format=''`参数来根据GO模板设置过滤信息,如: 查看 test 容器的 IP 地址 ``` $ docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' test 172.17.0.3 ``` ## 帮助 ``` $ docker inspect --help Usage: docker inspect [OPTIONS] NAME|ID [NAME|ID...] Return low-level information on Docker objects Options: -f, --format string Format the output using the given Go template -s, --size Display total file sizes if the type is container --type string Return JSON for specified type ```