allow to add documentation on containers

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-10-03 20:30:46 +02:00
parent ec6448fe5f
commit c1c96ee08a
10 changed files with 30 additions and 4 deletions

View file

@ -304,6 +304,11 @@ class ContainerDefinitionFetcher
$imageTag = $entry['image_tag'];
}
$documentation = '';
if (isset($entry['documentation'])) {
$documentation = $entry['documentation'];
}
$containers[] = new Container(
$entry['container_name'],
$displayName,
@ -327,6 +332,7 @@ class ContainerDefinitionFetcher
$init,
$imageTag,
$aioVariables,
$documentation,
$this->container->get(DockerActionManager::class)
);
}