node mean respectively?
the introduction in the document is not very complete https://hub.docker.com/_/node/
.Please help me, thank you!
node mean respectively?
the introduction in the document is not very complete https://hub.docker.com/_/node/
.Please help me, thank you!
to put it simply, these different tag representations are based on different base image. The bottom of the
page is clear.
Some of these tags may have names like jessie or stretch in them. These are the suite code names for releases of Debian and indicate which release the image is based on.
Jessie stretch wheezy are synonyms for Debian distributions.
, such as Jessie Jesse, was released in 2015.
wheezy was released in 2013.
alpine, like Debian, is a distribution of Linux, which is characterized by a very small size, only 5m. It's so small that it doesn't even have a bash, but there's a similar ash. This is also highly recommended by the government and is suitable to be used as a basic image.
the one with slim is the slimming version, such as Jessie-slim. Only the dependencies required when compiling node are preserved.
as to why there are so many basic images, sometimes we need to compile something else on a specific platform. Meet the environmental requirements of some projects.
simple summary:
if you just want to run node, use Alpine, because it is the lightest.
there are many examples related to the deployment of django. The way I deploy is nginx + gunicorn + django, where gunicorn communicates with app by visiting wsgi. So the problem is, when I deploy through docker, I don t use gunicorn, at all, so Wang Ye...
recently deployed web pages with docker, but I encountered a problem as follows: when normal deployment, that is, no docker is used, the configuration of the configuration file under nginx s site-enabled is as follows server { charset utf-8; ...
docker-compose.yml file version: "3" services: mysql: build: . services mysql container_name: mysql ports: - ${MYSQL_PORT}:3306 volumes: - ${MYSQL_DATA_PATH}: var lib mysql:rw ...