Chapter 10. Updating SSSD Containers
This procedure describes how you can update System Security Services Daemon (SSSD) containers if a new version of the rhel7/sssd image is released.
Procedure
Stop the SSSD service:
If SSSD is running as a system container:
systemctl stop sssd
# systemctl stop sssd
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If SSSD is running as an application container:
atomic stop <container_name>
# atomic stop <container_name>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Use the
docker rm
command to remove the image:docker rm rhel7/sssd
# docker rm rhel7/sssd
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Install the latest SSSD image:
atomic install rhel7/sssd
# atomic install rhel7/sssd
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Start the SSSD service:
If SSSD runs as a system container:
systemctl start sssd
# systemctl start sssd
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If SSSD runs as an application container, start each container using the
atomic start
command:atomic start <container_name>
# atomic start <container_name>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow