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