mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
add init flag to all containers
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
1b1626fe56
commit
4c0e30d49d
9 changed files with 39 additions and 0 deletions
|
|
@ -272,6 +272,11 @@ class ContainerDefinitionFetcher
|
|||
$tmpfs = $entry['tmpfs'];
|
||||
}
|
||||
|
||||
$init = true;
|
||||
if (isset($entry['init'])) {
|
||||
$init = $entry['init'];
|
||||
}
|
||||
|
||||
$containers[] = new Container(
|
||||
$entry['container_name'],
|
||||
$displayName,
|
||||
|
|
@ -292,6 +297,7 @@ class ContainerDefinitionFetcher
|
|||
$nextcloudExecCommands,
|
||||
$readOnlyRootFs,
|
||||
$tmpfs,
|
||||
$init,
|
||||
$this->container->get(DockerActionManager::class)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue