From 3dea3c405498a17872c85aab717ef14e109c62ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Wed, 26 Mar 2025 20:33:28 +0100 Subject: [PATCH] Improve the file format documentation of podman-import. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Bzip2, not bzip - Add Zstd - List compression algorithms, not file extensions, to decrease redundancy (and because the code doesn't actually rely on file extensions) Signed-off-by: Miloslav Trmač (cherry picked from commit 0a0c8ad6f4d60eb7b70901b1bda98130674a9df6) Signed-off-by: Paul Holzinger --- docs/source/markdown/podman-import.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/markdown/podman-import.1.md b/docs/source/markdown/podman-import.1.md index 5669b920b9..f36cc720d2 100644 --- a/docs/source/markdown/podman-import.1.md +++ b/docs/source/markdown/podman-import.1.md @@ -9,7 +9,7 @@ podman\-import - Import a tarball and save it as a filesystem image **podman image import** [*options*] *path* [*reference*] ## DESCRIPTION -**podman import** imports a tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz) +**podman import** imports a tarball (possibly compressed using Gzip, Bzip2, XZ or Zstd) and saves it as a filesystem image. Remote tarballs can be specified using a URL. Various image instructions can be configured with the **--change** flag and a commit message can be set using the **--message** flag.