在Docker容器中使用的Ubuntu版本

我试图找出在docker集装箱中使用的Ubuntu的版本。

这Verfiy在Docker容器中运行的ubuntu版本提到了cat /etc/lsb-release ,它给出了:

 cat: can't open '/etc/lsb-release': No such file or directory 

uname -r给出:

 3.13.0-119-generic 

FWIW, uname -a给出:

 Linux <container id> 3.13.0-119-generic #166-Ubuntu SMP Wed May 3 12:18:55 UTC 2017 x86_64 Linux 

任何想法可能是什么版本的Ubuntu? 或者我怎么能find这个呢?

试试lsb-release -acat /etc/issue

只是docker history --no-trunc your_image会显示,除其他事项之外, FROM ...