mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
shm-size must be an int
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
1cae0980cd
commit
8b6bb94539
3 changed files with 5 additions and 5 deletions
|
|
@ -406,7 +406,7 @@ class DockerActionManager
|
|||
}
|
||||
|
||||
$shmSize = $container->GetShmSize();
|
||||
if ($shmSize !== '') {
|
||||
if ($shmSize > 0) {
|
||||
$requestBody['HostConfig']['ShmSize'] = $shmSize;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue