From 3226e664845afc23fd7a61a26749f93c3bf04c41 Mon Sep 17 00:00:00 2001 From: thespad Date: Wed, 3 Jul 2024 16:39:57 +0100 Subject: [PATCH 1/2] Move tmpdir, set COMPlus_EnableDiagnostics --- Dockerfile | 4 +++- Dockerfile.aarch64 | 4 +++- readme-vars.yml | 2 ++ root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run | 5 ++++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c4f2812b..edc118ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,9 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG LIDARR_BRANCH="develop" -ENV XDG_CONFIG_HOME="/config/xdg" + ENV XDG_CONFIG_HOME="/config/xdg" \ + COMPlus_EnableDiagnostics=0 \ + TMPDIR=/run/lidarr-temp RUN \ echo "**** install packages ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index e8f362ce..d1699a3d 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -11,7 +11,9 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG LIDARR_BRANCH="develop" -ENV XDG_CONFIG_HOME="/config/xdg" +ENV XDG_CONFIG_HOME="/config/xdg" \ + COMPlus_EnableDiagnostics=0 \ + TMPDIR=/run/lidarr-temp RUN \ echo "**** install packages ****" && \ diff --git a/readme-vars.yml b/readme-vars.yml index 0ede6756..16f33c43 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -34,6 +34,8 @@ param_usage_include_ports: true param_ports: - { external_port: "8686", internal_port: "8686", port_desc: "Application WebUI" } +readonly_supported: true + # application setup block app_setup_block_enabled: true app_setup_block: | diff --git a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run index efea8517..7e43d1e6 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run @@ -1,6 +1,9 @@ #!/usr/bin/with-contenv bash # shellcheck shell=bash +mkdir -p /run/lidarr-temp + # permissions lsiown -R abc:abc \ - /config + /config \ + /run/lidarr-temp From 7c041103412e64c8996f90d0075aa72c5677a3a4 Mon Sep 17 00:00:00 2001 From: thespad Date: Wed, 3 Jul 2024 16:42:20 +0100 Subject: [PATCH 2/2] Indent --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index edc118ba..85b44fca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG LIDARR_BRANCH="develop" - ENV XDG_CONFIG_HOME="/config/xdg" \ +ENV XDG_CONFIG_HOME="/config/xdg" \ COMPlus_EnableDiagnostics=0 \ TMPDIR=/run/lidarr-temp