diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-06-07 15:14:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 15:14:44 +0200 |
commit | 448b582909c958f339a531b4651a0315bef21497 (patch) | |
tree | e9bb8d800965bec635fcaa83764d7f93b2ff00f5 /docs | |
parent | eaf53b6bb8d24b533ca4ca0f45ae69abd1086fdd (diff) | |
parent | e23c5b25f128a18b5b5c8d76cc0991f62005ae25 (diff) | |
download | podman-448b582909c958f339a531b4651a0315bef21497.tar.gz podman-448b582909c958f339a531b4651a0315bef21497.tar.bz2 podman-448b582909c958f339a531b4651a0315bef21497.zip |
Merge pull request #10381 from adrianreber/2021-05-18-publish
Add --publish to container restore
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-container-restore.1.md | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-container-restore.1.md b/docs/source/markdown/podman-container-restore.1.md index ef8722279..82bf76d1e 100644 --- a/docs/source/markdown/podman-container-restore.1.md +++ b/docs/source/markdown/podman-container-restore.1.md @@ -95,6 +95,19 @@ This option must be used in combination with the **--import, -i** option. When restoring containers from a checkpoint tar.gz file with this option, the content of associated volumes will not be restored. +#### **--publish**, **-p** + +Replaces the ports that the container publishes, as configured during the +initial container start, with a new set of port forwarding rules. + +``` +# podman run --rm -p 2345:80 -d webserver +# podman container checkpoint -l --export=dump.tar +# podman container restore -p 5432:8080 --import=dump.tar +``` + +For more details please see **podman run --publish**. + ## EXAMPLE podman container restore mywebserver @@ -104,7 +117,7 @@ podman container restore 860a4b23 podman container restore --import-previous pre-checkpoint.tar.gz --import checkpoint.tar.gz ## SEE ALSO -podman(1), podman-container-checkpoint(1) +podman(1), podman-container-checkpoint(1), podman-run(1) ## HISTORY September 2018, Originally compiled by Adrian Reber <areber@redhat.com> |