Solve the problem that docker run or docker restart will automatically exit when starting the image

Solve the problem that docker run or docker restart will automatically exit when starting the image

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:

docker run --name centos8 -it centos /bin/bash

Or a web container:

service php5-fpm start && nginx -g "daemon off;"

Tips

Add a program like tail top that can run in the foreground to continuously output log files.

service nginx start && service php5-fpm start && tail -f /var/log/nginx/error.log

Taking the web container mentioned above as an example, it can be written as:

service nginx start && service php5-fpm start && tail -f /var/log/nginx/error.log

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.

docker run -d centos /bin/bash -c "while true; do echo hello world; sleep 1; done"

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:

if [ -e /home/dc/testnn-aaa.zip ];then

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:
  • How to create Apache image using Dockerfile
  • Docker image access to local elasticsearch port operation
  • Multi-service image packaging operation of Dockerfile under supervisor
  • How to create your own Docker image and upload it to Dockerhub
  • How to change the domestic image source for Docker
  • Docker pull image and tag operation pull | tag
  • Use nexus as a private library to proxy docker to upload and download images
  • Docker image creation, uploading, pulling and deployment operations (using Alibaba Cloud)
  • Docker image analysis tool dive principle analysis

<<:  Summary of the use of MySQL date and time functions

>>:  HTML form tag tutorial (1):

Recommend

Dissecting the advantages of class over id when annotating HTML elements

There are very complex HTML structures in web pag...

Solution to blank page after Vue packaging

1. Solution to the problem that the page is blank...

In-depth understanding of the matching logic of Server and Location in Nginx

Server matching logic When Nginx decides which se...

Causes and solutions for MySQL deadlock

The database, like the operating system, is a sha...

Multiple ways to calculate age by birthday in MySQL

I didn't use MySQL very often before, and I w...

Detailed example of using case statement in MySQL stored procedure

This article uses an example to illustrate the us...

Analysis of the usage of Xmeter API interface testing tool

XMeter API provides a one-stop online interface t...

Vue+video.js implements video playlist

This article shares the specific code of vue+vide...

Implementation of mysql backup strategy (full backup + incremental backup)

Table of contents Design scenario Technical Point...

How to use vue-video-player to achieve live broadcast

Table of contents 1. Install vue-video-player 2. ...

Nginx Location Configuration Tutorial from Scratch

Basics The matching order of location is "ma...

Summary of methods for finding and deleting duplicate data in MySQL tables

Sometimes we save a lot of duplicate data in the ...

Use pure JS to achieve the secondary menu effect

This article example shares the specific code of ...

Nginx service 500: Internal Server Error one of the reasons

500 (Internal Server Error) The server encountere...

Detailed example of Linux all-round system monitoring tool dstat

All-round system monitoring tool dstat dstat is a...