How to check the HISTORY of Docker Container Restarts

Solution 1:

You can view the docker events. E.g. this will show all restart events for the last hour:

docker events --filter event=restart --since=60m

For more details on docker events, see: https://docs.docker.com/engine/reference/commandline/events