From 7e39b4e7a066937c4a15273faed2b49e77ceb652 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Mon, 11 Jan 2021 14:00:15 -0500 Subject: [PATCH] Fix default site alts in Dockerfile The Dockerfile was incorrectly assigning an empty string to the site alt values, which caused the filter to update relevant sites with an empty host. This replaces the empty string with the correct domain for each site alternative. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 04a422c..3c45daa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,11 +39,11 @@ ENV HTTPS_ONLY=$use_https ARG whoogle_port=5000 ENV EXPOSE_PORT=$whoogle_port -ARG twitter_alt='' +ARG twitter_alt='nitter.net' ENV WHOOGLE_ALT_TW=$twitter_alt -ARG youtube_alt='' +ARG youtube_alt='invidious.snopyta.org' ENV WHOOGLE_ALT_YT=$youtube_alt -ARG instagram_alt='' +ARG instagram_alt='bibliogram.art/u' ENV WHOOGLE_ALT_YT=$instagram_alt COPY . .