mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
allow to specify read_only root FS in containers definition
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
27d99efebf
commit
cf1efa9bb0
4 changed files with 18 additions and 0 deletions
|
|
@ -254,6 +254,11 @@ class ContainerDefinitionFetcher
|
|||
$nextcloudExecCommands = $entry['nextcloud_exec_commands'];
|
||||
}
|
||||
|
||||
$readOnlyRootFs = false;
|
||||
if (isset($entry['read_only'])) {
|
||||
$readOnlyRootFs = $entry['read_only'];
|
||||
}
|
||||
|
||||
$containers[] = new Container(
|
||||
$entry['container_name'],
|
||||
$displayName,
|
||||
|
|
@ -272,6 +277,7 @@ class ContainerDefinitionFetcher
|
|||
$apparmorUnconfined,
|
||||
$backupVolumes,
|
||||
$nextcloudExecCommands,
|
||||
$readOnlyRootFs,
|
||||
$this->container->get(DockerActionManager::class)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue