2023-07-22T15:04:05.123456789Z container create 123abc456def (image=ubuntu, name=my_container)
2023-07-22T15:04:06.123456789Z container start 123abc456def (image=ubuntu, name=my_container)
2023-07-22T15:04:10.123456789Z container stop 123abc456def (image=ubuntu, name=my_container)
2023-07-22T15:04:11.123456789Z container destroy 123abc456def (image=ubuntu, name=my_container)
docker events --filter event=stop
2023-07-22T15:04:10.123456789Z container stop 123abc456def (image=ubuntu, name=my_container)
docker events --format '{{.Time}} - {{.Type}} - {{.Action}}'
2023-07-22T15:04:05.123456789Z - container - create
2023-07-22T15:04:06.123456789Z - container - start
2023-07-22T15:04:10.123456789Z - container - stop
2023-07-22T15:04:11.123456789Z - container - destroy
docker events --since "2023-07-22T15:04:05"
docker events --until "2023-07-22T16:04:05"