mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
display warning if domaincheck container could not be started instead of bugging out
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
70b46093ab
commit
54d9181f14
4 changed files with 15 additions and 3 deletions
|
|
@ -255,7 +255,11 @@ class DockerController
|
|||
}
|
||||
|
||||
$this->StopDomaincheckContainer();
|
||||
$this->PerformRecursiveContainerStart($id);
|
||||
try {
|
||||
$this->PerformRecursiveContainerStart($id);
|
||||
} catch (\Exception $e) {
|
||||
error_log('Could not start domaincheck container: ' . $e->getMessage());
|
||||
}
|
||||
|
||||
// Cache the start for 10 minutes
|
||||
apcu_add($cacheKey, '1', 600);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue