mirror of
https://github.com/containers/podman.git
synced 2025-10-18 03:33:32 +08:00
Adding encryption decryption feature
Signed-off-by: Tarun1 Gupta <gupttaru@deshaw.com>
This commit is contained in:
7
docs/source/markdown/options/decryption-key.md
Normal file
7
docs/source/markdown/options/decryption-key.md
Normal file
@ -0,0 +1,7 @@
|
||||
####> This option file is used in:
|
||||
####> podman create, pull, run
|
||||
####> If you edit this file, make sure your changes
|
||||
####> are applicable to all of those.
|
||||
#### **--decryption-key**=*key[:passphrase]*
|
||||
|
||||
The [key[:passphrase]] to be used for decryption of images. Key can point to keys and/or certificates. Decryption will be tried with all keys. If the key is protected by a passphrase, it is required to be passed in the argument and omitted otherwise.
|
@ -114,6 +114,8 @@ and specified with a _tag_.
|
||||
|
||||
@@option cpuset-mems
|
||||
|
||||
@@option decryption-key
|
||||
|
||||
@@option device
|
||||
|
||||
Note: if the user only has access rights via a group, accessing the device
|
||||
|
@ -57,6 +57,8 @@ All tagged images in the repository will be pulled.
|
||||
|
||||
@@option creds
|
||||
|
||||
@@option decryption-key
|
||||
|
||||
@@option disable-content-trust
|
||||
|
||||
#### **--help**, **-h**
|
||||
|
@ -64,6 +64,14 @@ Note: This flag can only be set when using the **dir** transport
|
||||
|
||||
@@option disable-content-trust
|
||||
|
||||
#### **--encrypt-layer**=*layer(s)*
|
||||
|
||||
Layer(s) to encrypt: 0-indexed layer indices with support for negative indexing (e.g. 0 is the first layer, -1 is the last layer). If not defined, will encrypt all layers if encryption-key flag is specified.
|
||||
|
||||
#### **--encryption-key**=*key*
|
||||
|
||||
The [protocol:keyfile] specifies the encryption protocol, which can be JWE (RFC7516), PGP (RFC4880), and PKCS7 (RFC2315) and the key material required for image encryption. For instance, jwe:/path/to/key.pem or pgp:admin@example.com or pkcs7:/path/to/x509-file.
|
||||
|
||||
#### **--format**, **-f**=*format*
|
||||
|
||||
Manifest Type (oci, v2s2, or v2s1) to use when pushing an image.
|
||||
|
@ -131,6 +131,8 @@ and specified with a _tag_.
|
||||
|
||||
@@option cpuset-mems
|
||||
|
||||
@@option decryption-key
|
||||
|
||||
#### **--detach**, **-d**
|
||||
|
||||
Detached mode: run the container in the background and print the new container ID. The default is *false*.
|
||||
|
Reference in New Issue
Block a user