Docker starts in Exited state

Docker starts in Exited state

After docker run, the status is always Exited

Solution:

Add parameter: -it

docker run -it -d -p 80 -name static_web cjk1/benn

-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;

Supplement: docker restart exited process command

The server restarted and many Docker containers crashed

docker restart $(docker ps -a -q)

docker ps view

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 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
  • 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

<<:  Let's talk about the problem of Vue integrating sweetalert2 prompt component

>>:  IE6 BUG and fix is ​​a preventive strategy

Recommend

Several methods of implementing two fixed columns and one adaptive column in CSS

This article introduces several methods of implem...

How to add color mask to background image in CSS3

Some time ago, during development, I encountered ...

Summary of discussion on nginx cookie validity period

Every visit will generate Cookie in the browser, ...

Implementation of Redis master-slave cluster based on Docker

Table of contents 1. Pull the Redis image 2. Crea...

MySQL encryption and decryption examples

MySQL encryption and decryption examples Data enc...

Summary of relevant knowledge points of ajax in jQuery

Preface Students who learn JavaScript know that A...

Docker installs mysql and solves the Chinese garbled problem

Table of contents 1. Pull the mysql image 2. Chec...

Vue implements adding watermark effect to the page

Recently, when I was working on a project, I was ...

Centos7 installation of Nginx integrated Lua sample code

Preface The computer I use is a Mac, and the oper...

Solutions to browser interpretation differences in size and width and height in CSS

Let’s look at an example first Copy code The code ...

Detailed process of using vmware to test PXE batch installation server

Table of contents 1. Preparation 1. Prepare the e...

How to use HTML+CSS to create TG-vision homepage

This time we use HTML+CSS layout to make a prelim...