Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which Operating System is Docker virtualizing when it runs the Node image?

When you use the Node Docker Image, i suppose that Docker is running or (virtualizing) a OS that has a node installation, I will like to know what is that OS, or how is posible that Docker is able to run NodeJs

like image 833
Diego Meza Avatar asked Sep 01 '25 20:09

Diego Meza


1 Answers

There are several different image variants for Node - the official builds are all either flavors of Debian or Alpine Linux.

See more information: https://github.com/nodejs/docker-node/blob/main/README.md#image-variants

  • node:<version>
    • Debian
  • node:alpine
    • Alpine
  • node:buster
    • Debian 10
  • node:stretch
    • Debian 9
  • node:slim
    • Debian minimal
like image 155
doublesharp Avatar answered Sep 04 '25 23:09

doublesharp