After docker run, the status is always Exited

After docker run, the status is always Exited

add -it

docker run -it -name test -d nginx:latest /bin/bash

-d: Run the container in the background and return the container ID;

-i: Run the container in interactive mode, usually used with -t;

-t: reallocate a pseudo input terminal for the container, usually used together with -i;

Additional knowledge: docker-compose starts nginx through sh command and the container automatically exits with code 0

In the template file used by docker-compose, the container is started automatically by executing the sh command through the entrypoint or command parameter to start the nginx service, but the container automatically exits after docker-compose up

nginx-web1 exited with code 0

nginx-web2 exited with code 0

nginx-web3 exited with code 0

Reason: Docker's mechanism is to run the container in the background. There must be at least one foreground process. If the command run by the container is not a command that has been suspended (such as running top, tail), it will automatically exit.

Solution: You can use the sh command containing the -g "daemon off;" configuration item to start the nginx service in the foreground mode.

nginx -c /usr/local/nginx/conf/nginx.conf -g "daemon off;"

If the container needs to start multiple processes at the same time, just suspend one of them to the foreground, for example:

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

or

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

The above article "The status is always Exited after docker run" is all the content that the editor shared 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:
  • Docker starts in Exited state
  • docker run -v mounts data volumes abnormally, and the container status is always restarting
  • A brief discussion on the problem of Docker run container being in created state
  • Implementation of Docker container state conversion
  • Zabbix monitors docker container status [recommended]
  • How to monitor the running status of docker container shell script

<<:  Solve the problem that MySQL read-write separation causes data not to be selected after insert

>>:  Solve the mobile terminal jump problem (CSS transition, target pseudo-class)

Recommend

Solution to the problem that Centos8 cannot install docker

Problem [root@zh ~]# [root@zh ~]# [root@zh ~]# yu...

Nginx domain forwarding usage scenario code example

Scenario 1: Due to server restrictions, only one ...

css add scroll to div and hide the scroll bar

CSS adds scrolling to div and hides the scroll ba...

Vue implements user login switching

This article example shares the specific code of ...

Build a WebRTC video chat in 5 minutes

In the previous article, I introduced the detaile...

Solve the problem of inconsistency between mysql time and system time in docker

Recently, when I installed MySQL in Docker, I fou...

Meta viewport makes the web page full screen display control on iPhone

In desperation, I suddenly thought, how is the Sin...

Detailed explanation of 7 SSH command usages in Linux that you don’t know

A system administrator may manage multiple server...

Summary of Problems in Installation and Usage of MySQL 5.7.19 Winx64 ZIP Archive

Today I learned to install MySQL, and some proble...

XHTML Getting Started Tutorial: XHTML Web Page Image Application

<br />Adding pictures reasonably can make a ...

CSS3 realizes various graphic effects of small arrows

It’s great to use CSS to realize various graphics...

Detailed process of installing Presto and connecting Hive in Docker

1. Introduction Presto is an open source distribu...

Friendly Alternatives to Find Tool in Linux

The find command is used to search for files in a...

Detailed explanation of simple snow effect example using JS

Table of contents Preface Main implementation cod...

Analysis of Facebook's Information Architecture

<br />Original: http://uicom.net/blog/?p=762...