-
How to handle this on new Docker ? |
Beta Was this translation helpful? Give feedback.
Answered by
qya
Nov 9, 2022
Replies: 1 comment
-
/cat/proc give you the version of the OS which hosts the docker container, and not the docker image version. Remember that docker is not a virtual machine, but a bunch of isolated processes, named container, running on top of the hosting OS (and so, by its own kernel). I guess that you are using docker on Ubuntu. Is it right? Please refer to official docker containers architecture. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
qya
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/cat/proc give you the version of the OS which hosts the docker container, and not the docker image version. Remember that docker is not a virtual machine, but a bunch of isolated processes, named container, running on top of the hosting OS (and so, by its own kernel).
I guess that you are using docker on Ubuntu. Is it right?
Please refer to official docker containers architecture.