allow to add tmpfs

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-06-19 13:04:39 +02:00
parent a8ed5d3dc8
commit a1727d3f4f
4 changed files with 25 additions and 0 deletions

View file

@ -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)
);
}