diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-04-10 16:00:47 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-04-11 09:55:24 -0400 |
commit | aef09ce031d169a7a5c0c8460ee6ec231bbf5a11 (patch) | |
tree | bf5693e737dd1d3f8e7f60c59fde536ac8bac70f /docs/podman-commit.1.md | |
parent | 6cd6eb6768bb936e87309c61d9cf131350274700 (diff) | |
download | podman-aef09ce031d169a7a5c0c8460ee6ec231bbf5a11.tar.gz podman-aef09ce031d169a7a5c0c8460ee6ec231bbf5a11.tar.bz2 podman-aef09ce031d169a7a5c0c8460ee6ec231bbf5a11.zip |
Add --include-volumes flag to 'podman commit'
The 'docker commit' will never include a container's volumes when
committing, without an explicit request through '--change'.
Podman, however, defaulted to including user volumes as image
volumes.
Make this behavior depend on a new flag, '--include-volumes',
and make the default behavior match Docker.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'docs/podman-commit.1.md')
-rw-r--r-- | docs/podman-commit.1.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/podman-commit.1.md b/docs/podman-commit.1.md index acde51859..7c74d7a33 100644 --- a/docs/podman-commit.1.md +++ b/docs/podman-commit.1.md @@ -39,6 +39,10 @@ not specifically set, the default format used is _oci_. Write the image ID to the file. +**--include-volumes** + +Include in the committed image any volumes added to the container by the `--volume` or `--mount` options to the `podman create` and `podman run` commands. + **--message, -m** Set commit message for committed image. The message field is not supported in _oci_ format. |