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 […]

Window Service Running in Docker container not processing NServiceBus messages

I am running a windows docker container which is running ASP.Net window service based on framework 4.7.2. It is running successfully and supposed to pick NServiceBus messages but it is not picking NServiceBus messages to process. NServiceBus is using SQL Transport in my case. Docker container is able to ping database as well.
Can anyone help me to fix this?