In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
This article will explain in detail how to write docker file so that the container does not exit when running bash scripts. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.
To write docker file, you need to master some basic knowledge:
Keyword 1:FROM specifies the base image
The so-called custom image, it must be based on an image, customized on it. Just as we run a container of nginx images and then modify them, the underlying image must be specified. FROM specifies the basic image, so FROM is a necessary instruction in a Dockerfile, and it must be the first instruction.
Keyword 2:ENTRYPOINT
The format of ENTRYPOINT is the same as that of RUN instructions, which is divided into exec format and shell format.
The purpose of ENTRYPOINT, like CMD, is to start the program and parameters in the specified container. ENTRYPOINT can also be replaced at run time.
When ENTRYPOINT is specified, the meaning of CMD changes. Instead of running its command directly, it passes the contents of the CMD as an argument to the ENTRYPOINT instruction.
Keyword 3:CMD
Docker is either a virtual machine or a container is a process. Since it is a process, you need to specify the program and parameters to run when you start the container. The CMD directive is used to specify the default startup command for the container main process.
The principle of CMD command execution script is essentially / bin/sh-c command to execute user script, so the current container's main process is actually / bin/sh, not the user's script.
/ bin/sh exits after executing the user script, and as the main process, the Docker container exits when it exits, which is what makes the container special and different from the virtual machine.
We usually say that the container is a single process, not only that there should be only one main process running in the container, in fact, we can think of the whole container as our main process, that is, do not think of the container as a virtual machine. Instead, think of the container as an executable file.
So when we execute a script, if we want the container not to exit, we can set "/ bin/bash" in ENTRYPOINT to ensure that the container does not exit.
For example, the following dockerfile:
FROM ccccccccccc
CMD ["/ data/main.sh"]
ENTRYPOINT ["/ bin/bash"]
Then use the docker build command to build the image:
Docker build-t test:v1.
On "how to write docker file so that the container does not exit when running bash scripts" this article shares here, I hope the above content can be of some help to you, so that you can learn more knowledge, if you think the article is good, please share it out for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.