I host my webapplication is a docker container using Dokku.
Sometimes (maybe every 1-2 days) the docker container just disappears (doesnt show when docker ps
) and as a result, my server goes down.
I haven't been able to find the cause.
I am looking for a way to debug this, any ideas?
docker ps -a
? – KriemhildExited (255) 4 hours ago
– Plebsdocker logs
output (as mentioned in a comment below) and also you might want to figure out if your application is segfaulting for some reason. Our upcoming release will have restart-policy management, though you can always add restart policies using the official docker-options plugin directly. – Illustrative