Unanswered
Hi All! I Recently Started Working With Clearml Serving. I Got This Example Working
Yes, with docker auto-starting containers is def a thing 🙂 We set the containers to restart automatically (a reboot will do that too) for when the container crashes it will immediately restarts, let's say in a production environment.
So the best thing to do there is to use docker ps
to get all running containers and then kill them using docker kill <container_id>
. Chatgpt tells me this command should kill all currently running containers:docker rm -f $(docker ps -aq)
And I think it is correct 🙂
155 Views
0
Answers
one year ago
one year ago