Steps for docker container exit error code

Steps for docker container exit error code

Sometimes some docker containers exit after a period of execution. In order to find out the reason, check the error code of the docker container exit. The specific steps are as follows:

1. Find the exited container. You can find it in the following two ways:

docker ps --filter "status=exited"

docker ps -a | grep container name

2. Execute the docker inspect container id command to view the exited container information

docker inspect container id, check the State part

The State section shows the status of the container, OOMKilled, ExitCode and other information. The following is a common ExitCode of Docker

  • Exit Code 0 : In many cases, it may just be the normal exit of the program
  • Exit Code 1 : Application startup failed, such as failure to connect to the database at startup, failure to register nacos, etc.
  • Exit Code 137 : The container received a SIGKILL signal. For example, the system killed the container when the container usage was too high. It could also be a Dockerfile problem, where a non-existent file was accessed, such as ENTRYPOINT ["java","-jar","sample.ja"] missing the regexp.
  • Exit Code 139 : The container received a SIGSEGV signal, such as a program accessing memory beyond the bounds, but the running system did not catch the corresponding error. Exit Code 255: An error occurred in the container, but the cause of the error is uncertain. In this case, you can view the container logs through docker logs container id to see if you can find any clues.

PS: Let’s take a look at the errors encountered when creating a docker container

1. Screenshot of the problem

2. Description of the problem This problem is caused by the incompatibility between the Docker version and the system version.

The current system version and docker version are as follows:

3. Problem Solving

The problem can be solved by installing a lower version of docker or a higher version of the system (Centos7.4 or above).

Install the lower version of docker address: https://www.jb51.net/article/219364.htm

This is the end of this article about docker container error codes. For more relevant docker error code content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of several storage methods of docker containers
  • Docker container data volume named mount and anonymous mount issues
  • A Brief Analysis of Patroni in Docker Containers

<<:  jQuery solves the problem of not executing the original event after adding elements

>>:  MySql cache query principle and cache monitoring and index monitoring introduction

Recommend

JS realizes the front-end paging effect

This article example shares the specific code of ...

JavaScript canvas to achieve meteor effects

This article shares the specific code for JavaScr...

js to realize automatic lock screen function

1. Usage scenarios There is such a requirement, s...

In-depth explanation of hidden fields, a new feature of MySQL 8.0

Preface MySQL version 8.0.23 adds a new feature: ...

Linux Jenkins configuration salve node implementation process diagram

Preface: Jenkins' Master-Slave distributed ar...

Floating menu, can achieve up and down scrolling effect

The code can be further streamlined, but due to t...

MySQL 5.7.27 installation and configuration method graphic tutorial

The installation tutorial of MySQL 5.7.27 is reco...

How to use dynamic parameters and calculated properties in Vue

1. Dynamic parameters Starting from 2.6.0, you ca...

How to Install Xrdp Server (Remote Desktop) on Ubuntu 20.04

Xrdp is an open source implementation of Microsof...

Detailed explanation of single-row function code of date type in MySQL

Date-type single-row functions in MySQL: CURDATE(...

Example operation MySQL short link

How to set up a MySQL short link 1. Check the mys...

Detailed explanation of the application of CSS Sprite

CSS Sprite, also known as CSS Sprite, is an image...

Javascript to achieve drumming effect

This article shares the specific code of Javascri...