mirror of
https://github.com/containers/podman.git
synced 2025-05-20 16:47:39 +08:00

the podman artifact verb is used to manage OCI artifacts. the following verbs were added to `podman artifact`: * add * inspect * ls * pull * push * rm Notable items with this PR: * all artifact commands and their output are subject to change. i.e. consider all of this tech preview * there is no way to add a file to an artifact that already exists in the store. you would need to delete and recreate the artifact. * all references to artifacts names should be fully qualified names in the form of repo/name:tag (i.e. quay.io/artifact/foobar:latest) * i understand that we will likely want to be able to attribute things like arch, etc to artifact files. this function is not available yet. Many thanks to Paul Holzinger for autocompletion PRs and review PRs that fixed issues early on. Also fix up some Args function to specify the correct number of args. Signed-off-by: Paul Holzinger <pholzing@redhat.com> Signed-off-by: Brent Baude <bbaude@redhat.com>
1.8 KiB
1.8 KiB
% podman-artifact 1
WARNING: Experimental command
This command is considered experimental and still in development. Inputs, options, and outputs are all subject to change.
NAME
podman-artifact - Manage OCI artifacts
SYNOPSIS
podman artifact subcommand
DESCRIPTION
podman artifact
is a set of subcommands that manage OCI artifacts.
OCI artifacts are a common way to distribute files that are associated with OCI images and containers. Podman is capable of managing (pulling, inspecting, pushing) these artifacts from its local "artifact store".
SUBCOMMANDS
Command | Man Page | Description |
---|---|---|
add | podman-artifact-add(1) | Add an OCI artifact to the local store |
inspect | podman-artifact-inspect(1) | Inspect an OCI artifact |
ls | podman-artifact-ls(1) | List OCI artifacts in local store |
pull | podman-artifact-pull(1) | Pulls an artifact from a registry and stores it locally |
push | podman-artifact-push(1) | Push an OCI artifact from local storage to an image registry |
rm | podman-artifact-rm(1) | Remove an OCI from local storage |
SEE ALSO
HISTORY
Sept 2024, Originally compiled by Brent Baude bbaude@redhat.com