From 455b5e09a12f89b8bfce2d4d1a02d803742f1b4f Mon Sep 17 00:00:00 2001 From: Bockiii Date: Sun, 5 Sep 2021 05:10:54 +0200 Subject: [PATCH] [Dockerfile] Add custom config location (#2098) --- Dockerfile | 4 +++- docker-entrypoint.sh | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100755 docker-entrypoint.sh diff --git a/Dockerfile b/Dockerfile index ef108408..7e87b04d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,4 +34,6 @@ RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" \ && sed -ri -e 's/(MinProtocol\s*=\s*)TLSv1\.2/\1None/' /etc/ssl/openssl.cnf \ && sed -ri -e 's/(CipherString\s*=\s*DEFAULT)@SECLEVEL=2/\1/' /etc/ssl/openssl.cnf -COPY --chown=www-data:www-data ./ /app/ \ No newline at end of file +COPY --chown=www-data:www-data ./ /app/ + +CMD ["/app/docker-entrypoint.sh"] diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh new file mode 100755 index 00000000..66cc03ec --- /dev/null +++ b/docker-entrypoint.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env bash + +# - Find custom files (bridges, whitelist, config.ini) in the /config folder +# - Copy them to the respective folders in /app +# This will overwrite previous configs and bridges of same name +# If there are no matching files, rss-bridge works like default. + +find /config/ -type f -name '*.*' -print0 | +while IFS= read -r -d '' file; do + file_name="$(basename "$file")" # Strip leading path + if [[ $file_name = *" "* ]]; then + printf 'Custom Bridge %s has a space in the name and will be skipped.\n' "$file_name" + continue + fi + case "$file_name" in + *Bridge.php) yes | cp "$file" /app/bridges/ ; + chown www-data:www-data "/app/bridges/$file_name"; + printf "Custom Bridge %s added.\n" $file_name;; + config.ini.php) yes | cp "$file" /app/ ; + chown www-data:www-data "/app/$file_name"; + printf "Custom config.ini.php added.\n";; + whitelist.txt) yes | cp "$file" /app/ ; + chown www-data:www-data "/app/$file_name"; + printf "Custom whitelist.txt added.\n";; + esac +done + +# Start apache +apache2-foreground