Mercurial > hg > orthanc-book
changeset 841:e0d5dbbbde99
new housekeeper plugin in osimis images
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 09 May 2022 15:02:06 +0200 |
parents | 1262a26f96d1 |
children | 92ca063536ed |
files | Sphinx/source/users/docker-osimis.rst |
diffstat | 1 files changed, 52 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/Sphinx/source/users/docker-osimis.rst Mon May 09 13:11:47 2022 +0200 +++ b/Sphinx/source/users/docker-osimis.rst Mon May 09 15:02:06 2022 +0200 @@ -348,6 +348,14 @@ | | | } | | | | } | +--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ +| **Housekeeper** | ``HOUSEKEEPER_PLUGIN_ENABLED`` | .. code-block:: json | +| | | | +| | | { | +| | | "Housekeeper": { | +| | | "Enable": false | +| | | } | +| | | } | ++--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ | **Wsi** | ``WSI_PLUGIN_ENABLED`` | | +--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ | **Odbc** | ``ODBC_PLUGIN_ENABLED`` | .. code-block:: json | @@ -377,6 +385,50 @@ | | | } | | | | } | +--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ +| **Neuro** | ``NEURO_PLUGIN_ENABLED`` | .. code-block:: json | +| | | | +| | | { | +| | | "Neuro": { | +| | | "Enable": true | +| | | } | +| | | } | ++--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ +| **AzureBlobStorage** | ``AZURE_BLOB_STORAGE_PLUGIN_ENABLED`` | .. code-block:: json | +| | | | +| | | { | +| | | "AzureBlobStorage": { | +| | | "ConnectionString": "MUST BE DEFINED BY YOU", | +| | | "ContainerName": "MUST BE DEFINED BY YOU" | +| | | } | +| | | } | ++--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ +| **AwsS3Storage** | ``AWS_S3_STORAGE_PLUGIN_ENABLED`` | .. code-block:: json | +| | | | +| | | { | +| | | "AwsS3Storage": { | +| | | "BucketName": "MUST BE DEFINED BY YOU", | +| | | "Region": "MUST BE DEFINED BY YOU" | +| | | } | +| | | } | ++--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ +| **GoogleCloudStorage** | ``GOOGLE_CLOUD_STORAGE_PLUGIN_ENABLED`` | .. code-block:: json | +| | | | +| | | { | +| | | "GoogleCloudStorage": { | +| | | "ServiceAccountFile": "MUST BE DEFINED BY YOU", | +| | | "BucketName": "MUST BE DEFINED BY YOU" | +| | | } | +| | | } | ++--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ +| **OrthancExplorer2** | ``ORTHANC_EXPLORER_2_ENABLED`` | .. code-block:: json | +| | | | +| | | { | +| | | "OrthancExplorer2": { | +| | | "Enable": true, | +| | | "IsDefaultOrthancUI": false | +| | | } | +| | | } | ++--------------------------------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------+ Under the hood --------------