Files
podman/docs/podman.1.md
Matthew Heon 5c20bc4963 Add restart to main podman manpage
Signed-off-by: Matthew Heon <mheon@redhat.com>

Closes: #503
Approved by: rhatdan
2018-03-16 13:55:49 +00:00

6.9 KiB

% podman(1) podman - Simple management tool for pods and images % Dan Walsh

podman "1" "September 2016" "podman"

NAME

podman - Simple management tool for containers and images

SYNOPSIS

podman [options] COMMAND

DESCRIPTION

podman is a simple client only tool to help with debugging issues when daemons such as CRI runtime and the kubelet are not responding or failing. A shared API layer could be created to share code between the daemon and podman. podman does not require any daemon running. podman utilizes the same underlying components that crio uses i.e. containers/image, container/storage, oci-runtime-tool/generate, runc or any other OCI compatible runtime. podman shares state with crio and so has the capability to debug pods/images created by crio.

podman [GLOBAL OPTIONS]

GLOBAL OPTIONS

--help, -h Print usage statement

--config value, -c="config.file" Path of a config file detailing container server configuration options

--cpu-profile Path to where the cpu performance results should be written

--log-level log messages above specified level: debug, info, warn, error (default), fatal or panic

--root=value Path to the root directory in which data, including images, is stored

--runroot=value Path to the 'run directory' where all state information is stored

--runtime=value Path to the OCI compatible binary used to run containers

--storage-driver, -s=value Select which storage driver is used to manage storage of images and containers (default is overlay)

--storage-opt=value Used to pass an option to the storage driver

--version, -v Print the version

COMMANDS

Command Description
podman-attach(1) Attach to a running container.
podman-build(1) Build a container using a Dockerfile.
podman-commit(1) Create new image based on the changed container.
podman-cp(1) Copy files/folders between a container and the local filesystem.
podman-create(1) Create a new container.
podman-diff(1) Inspect changes on a container or image's filesystem.
podman-exec(1) Execute a command in a running container.
podman-export(1) Export a container's filesystem contents as a tar archive.
podman-history(1) Show the history of an image.
podman-images(1) List images in local storage.
podman-import(1) Import a tarball and save it as a filesystem image.
podman-info(1) Displays Podman related system information.
podman-inspect(1) Display a container or image's configuration.
podman-kill(1) Kill the main process in one or more containers.
podman-load(1) Load an image from the docker archive.
podman-login(1) Login to a container registry.
podman-logout(1) Logout of a container registry.
podman-logs(1) Display the logs of a container.
podman-mount(1) Mount a working container's root filesystem.
podman-pause(1) Pause one or more containers.
podman-port(1) List port mappings for the container.
podman-ps(1) Prints out information about containers.
podman-pull(1) Pull an image from a registry.
podman-push(1) Push an image from local storage to elsewhere.
podman-restart(1) Restart one or more containers.
podman-rm(1) Remove one or more containers.
podman-rmi(1) Removes one or more locally stored images.
podman-run(1) Run a command in a container.
podman-save(1) Save an image to docker-archive or oci.
podman-search(1) Search a registry for an image.
podman-start(1) Starts one or more containers.
podman-stats(1) Display a live stream of one or more container's resource usage statistics.
podman-stop(1) Stop one or more running containers.
podman-tag(1) Add an additional name to a local image.
podman-top(1) Display the running processes of a container.
podman-umount(1) Unmount a working container's root filesystem.
podman-unpause(1) Unpause one or more containers.
podman-version(1) Display the Podman version information.
podman-wait(1) Wait on one or more containers to stop and print their exit codes.

SEE ALSO

crio(8)

HISTORY

Dec 2016, Originally compiled by Dan Walsh dwalsh@redhat.com