Solve the problem of docker container exiting immediately after starting

Solve the problem of docker container exiting immediately after starting

Recently I was looking at how Docker allows containers to directly run certain processes when they start, and later I found that Dockerfile can specify the container running command when the container starts.

CMD specifies, but each Dockerfile can only have one CMD instruction. If multiple CMD instructions are specified, only the last one will be executed.

So I thought of a way, wrote a script, started multiple processes in the script, and ran the script in Dockerfile.

Finally, this method was proved to be feasible. However, a problem was encountered during the experiment. The container stopped immediately after starting.

After consulting the information:

A Docker container can only manage one process at a time. If this process exits, the container will also exit. However, this does not mean that the container can only run one process (other processes can run in the background). However, in order for the container to not exit, there must be a process executing in the foreground.

Solution:

The last process in the script must be run in foreground mode, that is, do not add & (& means background running) at the end of the process, otherwise the container will exit.

Supplementary knowledge: Problems and solutions when using gdbserver in a docker container

I have a problem when using gdbserver in a docker container

linux_ptrace_test_ret_to_nx: Cannot PTRACE_TRACEME:operation not permmit

The reason is that Docker disables the PTRACE function by default and needs to be enabled when the container is running.

docker run -ti --cap-add=SYS_PTRACE ubuntu

The above article on solving the problem of docker container exiting immediately after starting is all the content that the editor shares with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Each time Docker starts a container, the IP and hosts specified operations
  • Detailed explanation of Shell script control docker container startup order
  • Docker modifies the configuration information of an unstarted container
  • Dockerfile implementation code when starting two processes in a docker container
  • Docker file storage path, get container startup command operation
  • Docker batch start and close all containers

<<:  Document Object Model (DOM) in JavaScript

>>:  Introduction to HTML DOM_PowerNode Java Academy

Recommend

Table Tag (table) In-depth

<br />Table is a tag that has been used by e...

Linux centOS installation JDK and Tomcat tutorial

First download JDK. Here we use jdk-8u181-linux-x...

Detailed Analysis of the Selection of MySQL Common Index and Unique Index

Suppose a user management system where each perso...

How to detect Ubuntu version using command line

Method 1: Use the lsb_release utility The lsb_rel...

Detailed explanation of CSS weight value (cascading) examples

•There are many selectors in CSS. What will happe...

CentOS installation mysql5.7 detailed tutorial

This article shares the detailed steps of install...

Web front-end development course What are the web front-end development tools

With the development of Internet technology, user...

Common attacks on web front-ends and ways to prevent them

The security issues encountered in website front-...

Introduction to Jenkins and how to deploy Jenkins with Docker

1. Related concepts 1.1 Jenkins Concepts: Jenkins...

Mini Program Custom TabBar Component Encapsulation

This article example shares the specific code for...

Detailed explanation of Nginx reverse proxy example

1. Reverse proxy example 1 1. Achieve the effect ...

Example of how to implement keepalived+nginx high availability

1. Introduction to keepalived Keepalived was orig...

An example of how JavaScript can prevent duplicate network requests

Preface During development, we often encounter va...

JavaScript Closures Explained

Table of contents 1. What is a closure? 2. The ro...

Navicat for MySql Visual Import CSV File

This article shares the specific code of Navicat ...