From 5187324b03e191643f6e6cafb622bc8433763a51 Mon Sep 17 00:00:00 2001 From: David Buday Date: Fri, 8 Nov 2024 18:10:25 +0100 Subject: [PATCH] fix: revert change --- app/Jobs/ApplicationDeploymentJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/ApplicationDeploymentJob.php b/app/Jobs/ApplicationDeploymentJob.php index cc0d5b01f..ac295e9aa 100644 --- a/app/Jobs/ApplicationDeploymentJob.php +++ b/app/Jobs/ApplicationDeploymentJob.php @@ -1982,7 +1982,7 @@ class ApplicationDeploymentJob implements ShouldBeEncrypted, ShouldQueue $this->application_deployment_queue->addLogEntry("Pulling latest image ($image) from the registry."); $this->execute_remote_command( [ - executeInDocker($this->deployment_uuid, "docker pull {$this->application->registry_url}/{$image}"), + executeInDocker($this->deployment_uuid, "docker pull {$image}"), 'hidden' => true, ] );