-
-
Notifications
You must be signed in to change notification settings - Fork 434
Update Containers
Sam Erde edited this page Dec 28, 2020
·
4 revisions
How to properly upgrade a container the Docker way (also the podman way).
-
Update container
podman pull docker.io/path/to/application
-
Stop old container and remove it
podman stop containername
podman rm containername
-
Start it back up using the full run line for that specific container from when you initially set it up.
podman run -d ...
-
Done!