我试图找出在docker容器中使用的Ubuntu版本。
此Verfiy the version of ubuntu running in a Docker container提及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?或者我怎么能找到这个呢?
答案 0 :(得分:1)
尝试lsb-release -a
或cat /etc/issue
答案 1 :(得分:0)
只有docker history --no-trunc your_image
会显示FROM ...
行