-
Notifications
You must be signed in to change notification settings - Fork 949
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2097 from pouchrobot/auto-doc-2018-08-15
docs: auto generate pouch cli/api docs via code
- Loading branch information
Showing
3 changed files
with
95 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
## pouch history | ||
|
||
Display history information on image | ||
|
||
### Synopsis | ||
|
||
Return the history information about image | ||
|
||
``` | ||
pouch history [OPTIONS] IMAGE | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
pouch history busybox:latest | ||
IMAGE CREATED CREATED BY SIZE COMMENT | ||
e1ddd7948a1c 1 week ago /bin/sh -c #(nop) CMD ["sh"] 0.00 B | ||
<missing> 1 week ago /bin/sh -c #(nop) ADD file:96fda64a6b725d4... 716.06 KB | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for history | ||
--human Print information in human readable format (default true) | ||
--no-trunc Do not truncate output | ||
-q, --quiet Only show image numeric ID | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
-D, --debug Switch client log level to DEBUG mode | ||
-H, --host string Specify connecting address of Pouch CLI (default "unix:///var/run/pouchd.sock") | ||
--tlscacert string Specify CA file of TLS | ||
--tlscert string Specify cert file of TLS | ||
--tlskey string Specify key file of TLS | ||
--tlsverify Use TLS and verify remote | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [pouch](pouch.md) - An efficient container engine | ||
|