summaryrefslogtreecommitdiff
path: root/docs/podman-system-prune.1.md
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-10-24 14:54:57 -0500
committerMatthew Heon <mheon@redhat.com>2019-10-31 16:34:21 -0400
commit27e79f55407b9e46cee06c97ba53bc3a485f5c03 (patch)
tree033af31204e22a15378508403faa23fdbc1a3d6e /docs/podman-system-prune.1.md
parentd4ee76aae5959dfd36d277b72d1c0c9566a60c9f (diff)
downloadpodman-27e79f55407b9e46cee06c97ba53bc3a485f5c03.tar.gz
podman-27e79f55407b9e46cee06c97ba53bc3a485f5c03.tar.bz2
podman-27e79f55407b9e46cee06c97ba53bc3a485f5c03.zip
Restructure documentation dir
Restructuring the docs dir to make integration with sphinx easier. man pages now exist in docs/source/man and the sphinx make files exists in docs. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'docs/podman-system-prune.1.md')
-rw-r--r--docs/podman-system-prune.1.md37
1 files changed, 0 insertions, 37 deletions
diff --git a/docs/podman-system-prune.1.md b/docs/podman-system-prune.1.md
deleted file mode 100644
index e6297dc0b..000000000
--- a/docs/podman-system-prune.1.md
+++ /dev/null
@@ -1,37 +0,0 @@
-% podman-system-prune(1)
-
-## NAME
-podman\-system\-prune - Remove all unused container, image and volume data
-
-## SYNOPSIS
-**podman system prune** [*options*]
-
-## DESCRIPTION
-**podman system prune** removes all unused containers (both dangling and unreferenced), pods and optionally, volumes from local storage.
-
-With the `all` option, you can delete all unused images. Unused images are dangling images as well as any image that does not have any containers based on it.
-
-By default, volumes are not removed to prevent important data from being deleted if there is currently no container using the volume. Use the --volumes flag when running the command to prune volumes as well.
-
-## OPTIONS
-**--all**, **-a**
-
-Remove all unused images not just dangling ones.
-
-**--force**, **-f**
-
-Do not prompt for confirmation
-
-**--help**, **-h**
-
-Print usage statement
-
-**--volumes**
-
-Prune volumes not used by at least one container
-
-## SEE ALSO
-podman(1), podman-image-prune(1), podman-container-prune(1), podman-pod-prune(1), podman-volume-prune(1)
-
-## HISTORY
-February 2019, Originally compiled by Dan Walsh (dwalsh at redhat dot com)