Relative Content

Tag Archive for dockercontainers

Cannot start docker container exited

I am a beginner. After creating a container using Docker Run, I found that it cannot be restarted. I referred to some tutorials (following instructions), I also used docker run -rm -it [ID] bash to solve the problem.

How do I know the real state of this docker container?

“State”: { “Status”: “running”, “Running”: true, “Paused”: false, “Restarting”: false, “OOMKilled”: false, “Dead”: false, “Pid”: 7046, “ExitCode”: 0, “Error”: “”, “StartedAt”: “2023-05-17T04:25:57.721062063Z”, “FinishedAt”: “2023-05-17T01:25:21.135879756-03:00″ }, I have this docker container that shows a finish date, but it remains with the “Running” status. What could cause this? Is there a way to know if there are […]