Execute the command: docker run --name centos8 -d centos /bin/bash. Use docker ps to view the running container and cannot find centos8. Through docker ps -a, it is found that the centos8 container is already in a stopped state [root@MiWiFi-R4A-srv server]$ docker run --name centos8 -d centos /bin/bash a770630ca865b3c3346a321a383f302ed22af9281be8482f4f4debc59218d0d1 [root@MiWiFi-R4A-srv server]$ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES [root@MiWiFi-R4A-srv server]$ docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES a770630ca865 centos "/bin/bash" 37 seconds ago Exited (0) 35 seconds ago centos8 Why quit? This is because Docker runs in the background and there must be a foreground process. If the command run by docker is not one that is always hung (eg top, ping), it will automatically exit. In the above code, -d centos is the specified command that needs to be executed. When the command is executed or the application terminates, the container will automatically stop. Workaround Run as a foreground process The running program will be run as a foreground process. If the container needs to start multiple processes at the same time, you only need to suspend one of them to the foreground. For example, for the centos container mentioned above, you only need to modify the startup command to start in interactive mode:
Or a web container:
Tips Add a program like tail top that can run in the foreground to continuously output log files.
Taking the web container mentioned above as an example, it can be written as:
Write your own script When starting the centos/ubuntu container, you can do something: create an infinite loop and continuously output anything, so that the container will not think that there is nothing to do and commit suicide.
Supplementary knowledge: When starting a container in docker, the if command in the sh script called by CMD reports an unexpected symbol if[[. Solution Recently, I wrote an image through Dockerfile. The sh script (start.sh) was called in CMD to start the container. When it was started through docker run, the startup failed. I performed docker logs container ID and found that the error was: Unexpected symbol if [[ I successfully executed start.sh directly in the external Linux system. I entered the container through docker exec and called start.sh in the container without any errors. All the programs that needed to be started in the command were successfully started. There is no problem in executing the script directly, but an error occurs through docker run, which is puzzling. The error code segment in start.sh is as follows if [[ -e /home/dc/testnn-aaa.zip ]];then rm -rf /home/testnn-aaa unzip -q -o -d /home testnn-aaa.zip echo "unzip zip finished" else echo "dc zip not exist" fi After checking and comparing, because my start.sh also has an if statement before the error statement, but no error is reported, I found that the difference between the two places is that the first if uses a single []. If the code is changed to [], it will succeed. The modification is as follows:
The above article on solving the problem of automatic exit when starting the image with docker run or docker restart is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Summary of the use of MySQL date and time functions
>>: HTML form tag tutorial (1):
There are very complex HTML structures in web pag...
1. Solution to the problem that the page is blank...
Server matching logic When Nginx decides which se...
The database, like the operating system, is a sha...
I didn't use MySQL very often before, and I w...
This article uses an example to illustrate the us...
XMeter API provides a one-stop online interface t...
This article shares the specific code of vue+vide...
Table of contents Design scenario Technical Point...
Table of contents 1. Install vue-video-player 2. ...
Basics The matching order of location is "ma...
Sometimes we save a lot of duplicate data in the ...
This article example shares the specific code of ...
500 (Internal Server Error) The server encountere...
All-round system monitoring tool dstat dstat is a...