mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
allow to add documentation on containers
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
ec6448fe5f
commit
c1c96ee08a
10 changed files with 30 additions and 4 deletions
|
|
@ -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)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue