server->uuid))]; } public function uniqueId(): string { return $this->server->uuid; } public function __construct(public Server $server) {} public function handle(): void { try { $helperImage = config('coolify.helper_image'); ray("Pulling {$helperImage}"); instant_remote_process(["docker pull -q {$helperImage}"], $this->server, false); ray('PullHelperImageJob done'); } catch (\Throwable $e) { send_internal_notification('PullHelperImageJob failed with: '.$e->getMessage()); ray($e->getMessage()); throw $e; } } }