From f935993ac6c3a7b2ff25942704abf9e68c6f2ea8 Mon Sep 17 00:00:00 2001 From: Simon L Date: Mon, 20 Nov 2023 13:16:59 +0100 Subject: [PATCH] rename pullContainer to pullImage Signed-off-by: Simon L --- php/src/Controller/DockerController.php | 14 +++++++------- php/src/Docker/DockerActionManager.php | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/php/src/Controller/DockerController.php b/php/src/Controller/DockerController.php index f7e1454e..51dd42a6 100644 --- a/php/src/Controller/DockerController.php +++ b/php/src/Controller/DockerController.php @@ -26,11 +26,11 @@ class DockerController $this->configurationManager = $configurationManager; } - private function PerformRecursiveContainerStart(string $id, bool $pullContainer = true) : void { + private function PerformRecursiveContainerStart(string $id, bool $pullImage = true) : void { $container = $this->containerDefinitionFetcher->GetContainerById($id); foreach($container->GetDependsOn() as $dependency) { - $this->PerformRecursiveContainerStart($dependency, $pullContainer); + $this->PerformRecursiveContainerStart($dependency, $pullImage); } // Don't start if container is already running @@ -43,15 +43,15 @@ class DockerController // Skip database image pull if the last shutdown was not clean if ($id === 'nextcloud-aio-database') { if ($this->dockerActionManager->GetDatabasecontainerExitCode() > 0) { - $pullContainer = false; + $pullImage = false; error_log('Not pulling the latest database image because the container was not correctly shut down.'); } } $this->dockerActionManager->DeleteContainer($container); $this->dockerActionManager->CreateVolumes($container); - if ($pullContainer) { - $this->dockerActionManager->PullContainer($container); + if ($pullImage) { + $this->dockerActionManager->PullImage($container); } $this->dockerActionManager->CreateContainer($container); $this->dockerActionManager->StartContainer($container); @@ -188,7 +188,7 @@ class DockerController return $response->withStatus(201)->withHeader('Location', '/'); } - public function startTopContainer(bool $pullContainer) : void { + public function startTopContainer(bool $pullImage) : void { $config = $this->configurationManager->GetConfig(); // set AIO_TOKEN $config['AIO_TOKEN'] = bin2hex(random_bytes(24)); @@ -199,7 +199,7 @@ class DockerController $id = self::TOP_CONTAINER; - $this->PerformRecursiveContainerStart($id, $pullContainer); + $this->PerformRecursiveContainerStart($id, $pullImage); } public function StartWatchtowerContainer(Request $request, Response $response, array $args) : Response { diff --git a/php/src/Docker/DockerActionManager.php b/php/src/Docker/DockerActionManager.php index 0c64ee52..b535558d 100644 --- a/php/src/Docker/DockerActionManager.php +++ b/php/src/Docker/DockerActionManager.php @@ -577,7 +577,7 @@ class DockerActionManager } - public function PullContainer(Container $container) : void + public function PullImage(Container $container) : void { $url = $this->BuildApiUrl(sprintf('images/create?fromImage=%s', urlencode($this->BuildImageName($container)))); // do not catch any exception so that it always throws and logs the error