From 41b3fe08e911866592c52fad3608ea8e18dc9bbc Mon Sep 17 00:00:00 2001 From: bruvv <3063928+bruvv@users.noreply.github.com> Date: Fri, 23 Dec 2022 13:49:00 +0100 Subject: [PATCH] Fix config template I changed the url to the propper url, now it will download the file instead of the HTML. --- plex_meta_manager/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plex_meta_manager/Dockerfile b/plex_meta_manager/Dockerfile index 934c886f3..779983086 100644 --- a/plex_meta_manager/Dockerfile +++ b/plex_meta_manager/Dockerfile @@ -33,7 +33,7 @@ ENV HOME=/config/addons_config/plex-data-manager RUN \ # Add template config.yaml mkdir /templates \ - && curl -f -L -s -S "https://github.com/meisnate12/Plex-Meta-Manager/blob/master/config/config.yml.template" -o /templates/config.yml + && curl -f -L -s -S "https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/config/config.yml.template" -o /templates/config.yml # Global LSIO modifications ARG CONFIGLOCATION="/config/addons_config/plex-meta-manager"