diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-22 06:23:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 06:23:09 -0500 |
commit | 47616fe64720aedff76bbf37e46093800cdfee95 (patch) | |
tree | 8b5794400ab5d3d612552f9c88e5d5510d7347d2 /docs/source/markdown/podman-auto-update.1.md | |
parent | f02aba659447ea9198851231d7f11a8bfdfe69ba (diff) | |
parent | 94f96c78a600af8a67fe8df361e9bb871e00138d (diff) | |
download | podman-47616fe64720aedff76bbf37e46093800cdfee95.tar.gz podman-47616fe64720aedff76bbf37e46093800cdfee95.tar.bz2 podman-47616fe64720aedff76bbf37e46093800cdfee95.zip |
Merge pull request #9050 from xcffl/doc-rm-pod-before-start-systemd-service
[ci:docs] Add a notice to remove pods/containers before starting the systemd service
Diffstat (limited to 'docs/source/markdown/podman-auto-update.1.md')
-rw-r--r-- | docs/source/markdown/podman-auto-update.1.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-auto-update.1.md b/docs/source/markdown/podman-auto-update.1.md index 219ac03b7..ad1e425aa 100644 --- a/docs/source/markdown/podman-auto-update.1.md +++ b/docs/source/markdown/podman-auto-update.1.md @@ -58,6 +58,11 @@ $ podman generate systemd --new --files bc219740a210455fa27deacc96d50a9e20516492 # Load the new systemd unit and start it $ mv ./container-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service ~/.config/systemd/user $ systemctl --user daemon-reload + +# If the previously created containers or pods are using shared resources, such as ports, make sure to remove them before starting the generated systemd units. +$ podman stop bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d +$ podman rm bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d + $ systemctl --user start container-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service # Auto-update the container |