Skipping Docker Update Confirmation Prompt

I am working on automating a SUSE installation using AutoYaST, and part of the process involves handling SUSE registration. However, we are encountering an issue with Docker updates during the installation process.

When the installation attempts to update Docker, a pop-up appears with the message:
“Updating Docker will restart the Docker service, which may stop some of your Docker containers. Do you want to proceed with the update?”

Normally, we want to automatically proceed without manual intervention by selecting the “Continue” button, but despite setting a timeout in the report tag, the installation does not continue automatically.

Is there a specific tag or method in AutoYaST that allows us to bypass or auto-confirm this prompt during the installation process? Any guidance would be greatly appreciated!

@raghuholla Hi and welcome to the Forum :smile:
I’m assuming your referring to zypper installing updates? If you use the --no-confirm or setting the global zypper option --non-interactive should answer yes…

Hi @malcolmlewis, No I am not using zypper here and I am not patching the server post install.
I am trying to install the iso with all the available patches by doing registration in autoyast file itself.
If I install without registration, then I will not get this popup.

@raghuholla So likely need to tweak you docker-compose file to use noninteractive which should respond yes…

@malcolmlewis how we can do that, as of now i tried few more things in Autoyast like adding disable docker service tag, exclude docker package still it is enabling the docker service and trying to update the package

 <disable config:type="list">
    <service>docker</service>
  </disable>
<packages>
  <exclude>
      <package>docker</package>
  </exclude>
</packages>