August 2018
Intermediate to advanced
352 pages
12h 30m
English
You can use the --since or --until options with Docker events to narrow down results for the selected timestamp:
--since="" Show all events created since timestamp --until="" Stream events until this timestamp
Consider the following example:
$ docker events --since '2015-01-01'
With filters, we can further narrow down the events log based on the event, container, and image, as follows:
$ docker events --filter 'event=start'
$ docker events --filter 'image=alpine:3.5'
$ docker events --filter 'container=b3619441cb444b87b4' ...
Read now
Unlock full access