mirror of https://github.com/docker/cli.git
Add load/save image event support
For every docker load and save operations, it would log related image events. Signed-off-by: Kai Qiang Wu(Kennan) <wkqwu@cn.ibm.com>
This commit is contained in:
parent
bd299d2555
commit
c6d6752550
|
@ -25,7 +25,7 @@ Docker containers report the following events:
|
||||||
|
|
||||||
Docker images report the following events:
|
Docker images report the following events:
|
||||||
|
|
||||||
delete, import, pull, push, tag, untag
|
delete, import, load, pull, push, save, tag, untag
|
||||||
|
|
||||||
Docker volumes report the following events:
|
Docker volumes report the following events:
|
||||||
|
|
||||||
|
|
|
@ -18,11 +18,19 @@ information and real-time information.
|
||||||
|
|
||||||
Docker containers will report the following events:
|
Docker containers will report the following events:
|
||||||
|
|
||||||
attach, commit, copy, create, destroy, die, exec_create, exec_start, export, kill, oom, pause, rename, resize, restart, start, stop, top, unpause
|
attach, commit, copy, create, destroy, die, exec_create, exec_start, export, kill, oom, pause, rename, resize, restart, start, stop, top, unpause, update
|
||||||
|
|
||||||
and Docker images will report:
|
Docker images report the following events:
|
||||||
|
|
||||||
delete, import, pull, push, tag, untag
|
delete, import, load, pull, push, save, tag, untag
|
||||||
|
|
||||||
|
Docker volumes report the following events:
|
||||||
|
|
||||||
|
create, mount, unmount, destroy
|
||||||
|
|
||||||
|
Docker networks report the following events:
|
||||||
|
|
||||||
|
create, connect, disconnect, destroy
|
||||||
|
|
||||||
# OPTIONS
|
# OPTIONS
|
||||||
**--help**
|
**--help**
|
||||||
|
|
Loading…
Reference in New Issue