A brief discussion on the problem of Docker run container being in created state

A brief discussion on the problem of Docker run container being in created state

In a recent problem, there is such a phenomenon:

The system has a test script that continuously executes the docker run command to run the container. During the test, it was found that sometimes the container was not fully run to the "Up" state, but was in the "created" state, which was very strange.

The above environment first checks the container in the "created" state and the dockerd log:

(1) The dockerd log only contains "post create" requests, but no "post start" requests are received for the container;

(2) Manually executing docker start can pull the container to the "Up" state, indicating that there are no problems with the container and the image itself.

Based on the above phenomena, it is suspected that the "docker run" process was not completed and docker run exited. Look at "docker run" immediately. In cli/command/container/run.go, the implementation of the processing function func runRun() of the "docker run" command has the following situation:

func runRun(dockerCli *command.DockerCli, flags *pflag.FlagSet, opts *runOptions, copts *runconfigopts.ContainerOptions) error {
 . . . . . .
 createResponse, err := createContainer(ctx, dockerCli, config, hostConfig, networkingConfig, hostConfig.ContainerIDFile, opts.name)
 . . . . . .
 if err := client.ContainerStart(ctx, createResponse.ID, types.ContainerStartOptions{}); err != nil {)
 . . . . .
}

If the "docker run" command exits abnormally after executing the createContainer() function (such as encountering a kill signal), the ContainerStart() function cannot continue to run. This will result in the container being successfully created and in the "created" state, but not actually giving dockerd a "post start", which ultimately causes the above phenomenon.

Therefore, it is necessary to monitor the "docker run" command in daily production, such as determining whether it is executed successfully, whether it exits abnormally, whether the return value is 0 when exiting, etc.

Supplement: Three ways to run a docker container

The first solution

When we run docker containers, they are often in the Exited state.

For example, the following command docker run -d --name nginx -P nginx /bin/bash will exit after the interactive mode is completed, and re-docker start will not work;

If you want the container to be running after running, just remove /bin/bash.

The second solution

docker run -it --name nginxit -P nginx

Now the container nginxit is in exit state;

As long as we start it with docker, we can use it

docker start nginxit

The third one is similar to the second one:

docker run -it --name nginxit2 -P nginx /bin/bash

The foreground and background interactions need to be exited:

root@de4dbb27f905:/# exit

Then restart:

docker start nginxit2

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Docker starts in Exited state
  • docker run -v mounts data volumes abnormally, and the container status is always restarting
  • Implementation of Docker container state conversion
  • After docker run, the status is always Exited
  • Zabbix monitors docker container status [recommended]
  • How to monitor the running status of docker container shell script

<<:  MySQL advanced learning index advantages and disadvantages and rules of use

>>:  jQuery canvas generates a poster with a QR code

Recommend

How to use the EXPLAIN command in SQL

In daily work, we sometimes run slow queries to r...

HTML multimedia application: inserting flash animation and music into web pages

1. Application of multimedia in HTML_falsh animat...

Delegating Privileges in Linux Using Sudo

Introduction to sudo authority delegation su swit...

Three JavaScript methods to solve the Joseph ring problem

Table of contents Overview Problem Description Ci...

How to use Nginx to handle cross-domain Vue development environment

1. Demand The local test domain name is the same ...

Detailed explanation of MySQL solution to USE DB congestion

When we encounter a fault, we often think about h...

MySQL 8.0.17 installation and simple configuration tutorial under macOS

If you don’t understand what I wrote, there may b...

HTML table markup tutorial (16): title horizontal alignment attribute ALIGN

By default, the table title is horizontally cente...

Example verification MySQL | update field with the same value will record binlog

1. Introduction A few days ago, a development col...

Database index knowledge points summary

Table of contents First Look Index The concept of...

MySql index detailed introduction and correct use method

MySql index detailed introduction and correct use...

Vue method to verify whether the username is available

This article example shares the specific code of ...

Difference and implementation of JavaScript anti-shake and throttling

Table of contents 1. Anti-shake 2. Throttling 3. ...