From f6583b712d2d5af0dea8091c4b1032eebc0d700f Mon Sep 17 00:00:00 2001 From: artiume Date: Mon, 14 Dec 2020 07:40:37 -0500 Subject: [PATCH 1/4] Add Jellyfin binary environmentals --- readme-vars.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index b5c3764..3a13d34 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -37,7 +37,8 @@ param_env_vars: # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: - - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Emby, default if left unset is 022."} + - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Jellyfin, default if left unset is 022."} + - { env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } @@ -66,6 +67,8 @@ optional_parameters: | -p 1900:1900/udp \ ``` + The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability. + # application setup block app_setup_block_enabled: true app_setup_block: | From b9aa696afdbffc19055e72a69a8fd9a49a474718 Mon Sep 17 00:00:00 2001 From: artiume Date: Mon, 14 Dec 2020 07:44:52 -0500 Subject: [PATCH 2/4] Update readme-vars.yml --- readme-vars.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readme-vars.yml b/readme-vars.yml index 3a13d34..90199d7 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -117,6 +117,7 @@ app_setup_block: | # changelog changelogs: + - { date: "14.12.20:", desc: "Add Jellyfin Binary Environmental" } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Ingest releases from Jellyfin repo." } - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } From d0542ed5f8b3a73e6318c2a4d3c91f246f80112e Mon Sep 17 00:00:00 2001 From: artiume Date: Fri, 18 Dec 2020 21:51:41 -0500 Subject: [PATCH 3/4] add migration environmentals --- readme-vars.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 90199d7..ed5ee63 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -33,12 +33,16 @@ param_ports: - { external_port: "8096", internal_port: "8096", port_desc: "Http webUI." } param_usage_include_env: true param_env_vars: - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"} + - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use (e.g. Europe/London)."} # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Jellyfin, default if left unset is 022."} - { env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} + - { env_var: "JELLYFIN_DATA_DIR", env_value: "config/data", desc: "sets the data directory. This will allow migration to the native Jellyfin image."} + - { env_var: "JELLYFIN_CONFIG_DIR", env_value: "/config", desc: "sets the config directory. This will allow migration to the native Jellyfin image."} + - { env_var: "JELLYFIN_LOG_DIR", env_value: "config/log", desc: "sets the log directory. This will allow migration to the native Jellyfin image."} + - { env_var: "JELLYFIN_CACHE_DIR", env_value: "config/cache", desc: "sets the cache directory. This will allow migration to the native Jellyfin image."} opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } @@ -74,7 +78,7 @@ app_setup_block_enabled: true app_setup_block: | Webui can be found at `http://:8096` - More information can be found in their official documentation [here](https://jellyfin.org/docs/general/quick-start.html) . + More information can be found on the official documentation [here](https://jellyfin.org/docs/general/quick-start.html). ## Hardware Acceleration @@ -114,10 +118,9 @@ app_setup_block: | --device=/dev/video12:/dev/video12 ``` - # changelog changelogs: - - { date: "14.12.20:", desc: "Add Jellyfin Binary Environmental" } + - { date: "14.12.20:", desc: "Add Jellyfin Binary Environmentals" } - { date: "23.11.20:", desc: "Rebase to Focal, branch off Bionic." } - { date: "22.07.20:", desc: "Ingest releases from Jellyfin repo." } - { date: "28.04.20:", desc: "Replace MMAL/OMX dependency device `/dev/vc-mem` with `/dev/vcsm` as the former was not sufficient for raspbian." } From 911b1c606f12aac7327215a1cd0eb9ce1ef80bff Mon Sep 17 00:00:00 2001 From: artiume Date: Fri, 18 Dec 2020 22:11:14 -0500 Subject: [PATCH 4/4] Update readme-vars.yml --- readme-vars.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index ed5ee63..5ede7c1 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -39,10 +39,6 @@ opt_param_usage_include_env: true opt_param_env_vars: - { env_var: "UMASK_SET", env_value: "<022>", desc: "for umask setting of Jellyfin, default if left unset is 022."} - { env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."} - - { env_var: "JELLYFIN_DATA_DIR", env_value: "config/data", desc: "sets the data directory. This will allow migration to the native Jellyfin image."} - - { env_var: "JELLYFIN_CONFIG_DIR", env_value: "/config", desc: "sets the config directory. This will allow migration to the native Jellyfin image."} - - { env_var: "JELLYFIN_LOG_DIR", env_value: "config/log", desc: "sets the log directory. This will allow migration to the native Jellyfin image."} - - { env_var: "JELLYFIN_CACHE_DIR", env_value: "config/cache", desc: "sets the cache directory. This will allow migration to the native Jellyfin image."} opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*." } @@ -71,7 +67,7 @@ optional_parameters: | -p 1900:1900/udp \ ``` - The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability. + The [official documentation for environmentals](https://jellyfin.org/docs/general/administration/configuration.html) has additional environmentals that can provide additional configurability such as migrating to the native Jellyfin image. # application setup block app_setup_block_enabled: true