I'm trying to find the history of container restarts.
Of course the STATUS
field on a docker ps
will show the current uptime.
However if I have a container with a restart policy such as restart: unless-stopped
and it's gone through several restarts - How can I check that restart/uptime history?
If the docker engine doesn't natively track this - is there a known good method to handle this?