mirror of
https://github.com/containers/skopeo.git
synced 2025-09-25 12:16:17 +00:00
This is the script that runs 'skopeo COMMAND --help' and cross-checks that all the option flags are documented in man pages, and vice-versa (all options listed in man pages appear in COMMAND's --help message). Copied from podman, with changes for skopeo-land (removing the rst checks, and conforming to skopeo conventions). Signed-off-by: Ed Santiago <santiago@redhat.com>
45 lines
1.5 KiB
Markdown
45 lines
1.5 KiB
Markdown
% skopeo-standalone-sign(1)
|
|
|
|
## NAME
|
|
skopeo\-standalone-sign - Debugging tool - Publish and sign an image in one step.
|
|
|
|
## SYNOPSIS
|
|
**skopeo standalone-sign** [*options*] _manifest_ _docker-reference_ _key-fingerprint_ **--output**|**-o** _signature_
|
|
|
|
## DESCRIPTION
|
|
This is primarily a debugging tool, useful for special cases, and usually should not be a part of your normal operational workflow; use `skopeo copy --sign-by` instead to publish and sign an image in one step.
|
|
|
|
_manifest_ Path to a file containing the image manifest
|
|
|
|
_docker-reference_ A docker reference to identify the image with
|
|
|
|
_key-fingerprint_ Key identity to use for signing
|
|
|
|
## OPTIONS
|
|
|
|
**--help**, **-h**
|
|
|
|
Print usage statement
|
|
|
|
**--output**, **-o** _output file_
|
|
|
|
Write signature to _output file_.
|
|
|
|
## EXAMPLES
|
|
|
|
```sh
|
|
$ skopeo standalone-sign busybox-manifest.json registry.example.com/example/busybox 1D8230F6CDB6A06716E414C1DB72F2188BB46CC8 --output busybox.signature
|
|
$
|
|
```
|
|
|
|
## NOTES
|
|
|
|
This command is intended for use with local signatures e.g. OpenPGP ( other signature formats may be added in the future ), as per containers-signature(5). Furthermore, this command does **not** interact with the artifacts generated by Docker Content Trust (DCT). For more information, please see [containers-signature(5)](https://github.com/containers/image/blob/main/docs/containers-signature.5.md).
|
|
|
|
## SEE ALSO
|
|
skopeo(1), skopeo-copy(1), containers-signature(5)
|
|
|
|
## AUTHORS
|
|
|
|
Antonio Murdaca <runcom@redhat.com>, Miloslav Trmac <mitr@redhat.com>, Jhon Honce <jhonce@redhat.com>
|