diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-08-01 09:50:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-01 09:50:52 +0200 |
commit | f5f7909932dc314612539dabf8682b17c6e20970 (patch) | |
tree | c91259ed7763a34093cbb19ff03cce5ed15d8479 /docs/source | |
parent | fed326d8a6f8d4f7dc490099b29d51fc1754789f (diff) | |
parent | 24a599fe1d8f7f9da23cf3056c4eda8bcc89e563 (diff) | |
download | podman-f5f7909932dc314612539dabf8682b17c6e20970.tar.gz podman-f5f7909932dc314612539dabf8682b17c6e20970.tar.bz2 podman-f5f7909932dc314612539dabf8682b17c6e20970.zip |
Merge pull request #15125 from Romain-Geissler-1A/fix-manifest-push
[Closes 15109] Add flag "--compression-format" to "podman manifest push" (and other fixes)
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/markdown/podman-manifest-push.1.md | 4 | ||||
-rw-r--r-- | docs/source/markdown/podman-push.1.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-manifest-push.1.md b/docs/source/markdown/podman-manifest-push.1.md index 22e8cae9a..649315270 100644 --- a/docs/source/markdown/podman-manifest-push.1.md +++ b/docs/source/markdown/podman-manifest-push.1.md @@ -32,6 +32,10 @@ environment variable. `export REGISTRY_AUTH_FILE=path` Use certificates at *path* (\*.crt, \*.cert, \*.key) to connect to the registry. (Default: /etc/containers/certs.d) Please refer to containers-certs.d(5) for details. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines) +#### **--compression-format**=**gzip** | *zstd* | *zstd:chunked* + +Specifies the compression format to use. Supported values are: `gzip`, `zstd` and `zstd:chunked`. The default is `gzip` unless overridden in the containers.conf file. + #### **--creds**=*creds* The [username[:password]] to use to authenticate with the registry if required. diff --git a/docs/source/markdown/podman-push.1.md b/docs/source/markdown/podman-push.1.md index 3cda982ac..115d077dd 100644 --- a/docs/source/markdown/podman-push.1.md +++ b/docs/source/markdown/podman-push.1.md @@ -67,7 +67,7 @@ Note: This flag can only be set when using the **dir** transport #### **--compression-format**=**gzip** | *zstd* | *zstd:chunked* -Specifies the compression format to use. Supported values are: `gzip`, `zstd` and `zstd:chunked`. The default is `gzip`. +Specifies the compression format to use. Supported values are: `gzip`, `zstd` and `zstd:chunked`. The default is `gzip` unless overridden in the containers.conf file. #### **--creds**=*[username[:password]]* |