.nh .TH podman\-auto\-update(1) .SH NAME .PP podman\-auto\-update \- Auto update containers according to their auto\-update policy .SH SYNOPSIS .PP \fBpodman auto\-update\fP [\fIoptions\fP] .SH DESCRIPTION .PP \fB\fCpodman auto\-update\fR looks up containers with a specified "io.containers.autoupdate" label (i.e., the auto\-update policy). .PP If the label is present and set to "image", Podman reaches out to the corresponding registry to check if the image has been updated. An image is considered updated if the digest in the local storage is different than the one of the remote image. If an image must be updated, Podman pulls it down and restarts the systemd unit executing the container. .PP If "io.containers.autoupdate.authfile" label is present, Podman reaches out to corresponding authfile when pulling images. .PP At container\-creation time, Podman looks up the "PODMAN\_SYSTEMD\_UNIT" environment variables and stores it verbatim in the container's label. This variable is now set by all systemd units generated by \fB\fCpodman\-generate\-systemd\fR and is set to \fB\fC%n\fR (i.e., the name of systemd unit starting the container). This data is then being used in the auto\-update sequence to instruct systemd (via DBUS) to restart the unit and hence to restart the container. .PP Note that \fB\fCpodman auto\-update\fR relies on systemd and requires a fully\-qualified image reference (e.g., quay.io/podman/stable:latest) to be used to create the container. This enforcement is necessary to know which image to actually check and pull. If an image ID was used, Podman would not know which image to check/pull anymore. .PP Moreover, the systemd units are expected to be generated with \fB\fCpodman\-generate\-systemd \-\-new\fR, or similar units that create new containers in order to run the updated images. Systemd units that start and stop a container cannot run a new image. .SS Systemd Unit and Timer .PP Podman ships with a \fB\fCpodman\-auto\-update.service\fR systemd unit. This unit is triggered daily at midnight by the \fB\fCpodman\-auto\-update.timer\fR systemd timer. The timer can be altered for custom time\-based updates if desired. The unit can further be invoked by other systemd units (e.g., via the dependency tree) or manually via \fB\fCsystemctl start podman\-auto\-update.service\fR\&. .SH OPTIONS .SS \fB\-\-authfile\fP=\fIpath\fP .PP Path of the authentication file. Default is ${XDG\_RUNTIME\_DIR}/containers/auth.json, which is set using \fB\fCpodman login\fR\&. If the authorization state is not found there, $HOME/.docker/config.json is checked, which is set using \fB\fCdocker login\fR\&. .PP Note: You can also override the default path of the authentication file by setting the REGISTRY\_AUTH\_FILE environment variable. \fB\fCexport REGISTRY\_AUTH\_FILE=path\fR .SH EXAMPLES .PP .RS .nf # Start a container $ podman run \-\-label "io.containers.autoupdate=image" \\ \-\-label "io.containers.autoupdate.authfile=/some/authfile.json" \\ \-d busybox:latest top bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d # Generate a systemd unit for this container $ podman generate systemd \-\-new \-\-files bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d /home/user/containers/libpod/container\-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service # Load the new systemd unit and start it $ mv ./container\-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service \~/.config/systemd/user $ systemctl \-\-user daemon\-reload $ systemctl \-\-user start container\-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service # Auto\-update the container $ podman auto\-update container\-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service .fi .RE .SH SEE ALSO .PP podman(1), podman\-generate\-systemd(1), podman\-run(1), systemd.unit(5)