-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
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.
If the container needs to start multiple processes at the same time, just suspend one of them to the foreground, for example:
or
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:
|
<<: 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)
Problem [root@zh ~]# [root@zh ~]# [root@zh ~]# yu...
Scenario 1: Due to server restrictions, only one ...
CSS adds scrolling to div and hides the scroll ba...
This article example shares the specific code of ...
In the previous article, I introduced the detaile...
Recently, when I installed MySQL in Docker, I fou...
In desperation, I suddenly thought, how is the Sin...
A system administrator may manage multiple server...
Today I learned to install MySQL, and some proble...
<br />Adding pictures reasonably can make a ...
It’s great to use CSS to realize various graphics...
1. Introduction Presto is an open source distribu...
The find command is used to search for files in a...
Table of contents Preface Main implementation cod...
<br />Original: http://uicom.net/blog/?p=762...