diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 89ec6feea..31760f2fd 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -46,7 +46,7 @@ protected function schedule(Schedule $schedule): void $this->instance_auto_update($schedule); $this->check_scheduled_backups($schedule); $this->check_resources($schedule); - // $this->pull_helper_image($schedule); + $this->pull_helper_image($schedule); $this->check_scheduled_tasks($schedule); $schedule->command('cleanup:database --yes')->daily(); diff --git a/app/Jobs/ApplicationDeploymentJob.php b/app/Jobs/ApplicationDeploymentJob.php index 0207e4a80..b7e8e67cf 100644 --- a/app/Jobs/ApplicationDeploymentJob.php +++ b/app/Jobs/ApplicationDeploymentJob.php @@ -999,10 +999,6 @@ private function prepare_builder_image() } $this->application_deployment_queue->addLogEntry("Preparing container with helper image: $helperImage."); $this->execute_remote_command( - [ - "command" => "docker pull -q {$helperImage}", - "hidden" => true - ], [ "command" => "docker rm -f {$this->deployment_uuid}", "ignore_errors" => true,