]> git.p6c8.net - jirafeau.git/commitdiff
Fixed and improved Docker image options.
authorSandybunting <will.a.bunting@gmail.com>
Tue, 27 Sep 2022 16:31:08 +0000 (16:31 +0000)
committerJerome Jutteau <jerome@jutteau.fr>
Sat, 17 Jun 2023 14:08:10 +0000 (16:08 +0200)
Fixed the Docker image TITLE option and added a DARK_STYLE option.

Changes made to docker_config.php and the docker README

docker/README.md
docker/docker_config.php

index b30f63a5cfe5a2e813d50f6540cadaab728db208..5f9dce301084d17643ba7e17fe2e1a4ab2ef290d 100644 (file)
@@ -42,7 +42,8 @@ Available options:
 - `TITLE`: set Jirafeau instance title.
 - `ORGANISATION`: set organisation (in ToS).
 - `CONTACTPERSON`: set contact person (in ToS).
-- `STYLE`: apply a specific style.
+- `STYLE`: apply a specific style from the media folder.
+- `DARK_STYLE`: apply a specific style for browsers in dark mode.
 - `AVAILABILITY_DEFAULT`: setup which availability shows by default.
 - `ONE_TIME_DOWNLOAD`: set to 1 or 0 to enable or disable one time downloads.
 - `ENABLE_CRYPT`: set to 1 or 0 to enable or disable server side encryption.
index 2509fd05b2204a6414ed4cc6dc90c58bbb8fabd9..634d58bfdcc5373a2b24f648006bc174a1be732f 100644 (file)
@@ -161,11 +161,12 @@ function run_setup(&$cfg)
     setup_webroot($cfg);
     env_2_cfg_string($cfg, 'file_hash');
     env_2_cfg_bool($cfg, 'preview');
-    env_2_cfg_bool($cfg, 'title');
+    env_2_cfg_string($cfg, 'title', false);
     env_2_cfg_string($cfg, 'organisation');
     env_2_cfg_string($cfg, 'contactperson');
     env_2_cfg_string($cfg, 'style');
     env_2_cfg_string($cfg, 'availability_default');
+    env_2_cfg_string($cfg, 'dark_style');
     env_2_cfg_bool($cfg, 'one_time_download');
     env_2_cfg_bool($cfg, 'enable_crypt');
     env_2_cfg_bool($cfg, 'debug');
@@ -193,4 +194,4 @@ function run_setup(&$cfg)
     }
 }
 
-run_setup($cfg);
+run_setup($cfg);
\ No newline at end of file

patrick-canterino.de