fix(docker): fix pull command

This commit is contained in:
2025-07-04 09:49:51 +03:00
parent 544f90b630
commit d605e1a95d

View File

@@ -71,7 +71,7 @@ func (i *DockerInstaller) Update() error {
containerName := i.GetContainerName()
logger.Debug("Pulling updated image: %s", image)
if err := i.RunCmdPassThrough(fmt.Sprintf("docker pull %s", image)); err != nil {
if err := i.RunCmdPassThrough("docker", "pull", image); err != nil {
return fmt.Errorf("failed to pull image: %w", err)
}