add wireguard as community container

Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
Simon L.
2026-08-25 15:23:19 +02:00
parent 50636f2adc
commit d4e41ed4ed
8 changed files with 219 additions and 1 deletions
+6
View File
@@ -308,6 +308,11 @@ readonly class ContainerDefinitionFetcher {
$capAdd = $entry['cap_add'];
}
$sysctls = [];
if (isset($entry['sysctls'])) {
$sysctls = $entry['sysctls'];
}
$shmSize = -1;
if (isset($entry['shm_size'])) {
$shmSize = $entry['shm_size'];
@@ -370,6 +375,7 @@ readonly class ContainerDefinitionFetcher {
$devices,
$enableNvidiaGpu,
$capAdd,
$sysctls,
$shmSize,
$apparmorUnconfined,
$backupVolumes,