From 2de31afe26e1ca8b19988e39442d3246aa95ce91 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Mon, 10 May 2021 13:53:27 +0200 Subject: [PATCH] Use actual template language --- abra.sh | 4 ++-- compose.yml | 5 +++-- file-provider.yml => file-provider.yml.tmpl | 0 traefik.yml => traefik.yml.tmpl | 0 4 files changed, 5 insertions(+), 4 deletions(-) rename file-provider.yml => file-provider.yml.tmpl (100%) rename traefik.yml => traefik.yml.tmpl (100%) diff --git a/abra.sh b/abra.sh index 547640d..b0507d4 100644 --- a/abra.sh +++ b/abra.sh @@ -1,2 +1,2 @@ -export TRAEFIK_YML_VERSION=v6 -export FILE_PROVIDER_YML_VERSION=v1 +export TRAEFIK_YML_VERSION=v7 +export FILE_PROVIDER_YML_VERSION=v2 diff --git a/compose.yml b/compose.yml index 7408d4e..ccb49ae 100644 --- a/compose.yml +++ b/compose.yml @@ -50,10 +50,11 @@ networks: configs: traefik_yml: name: ${STACK_NAME}_traefik_yml_${TRAEFIK_YML_VERSION} - file: traefik.yml + file: traefik.yml.tmpl template_driver: golang file_provider_yml: name: ${STACK_NAME}_file_provider_yml_${FILE_PROVIDER_YML_VERSION} - file: file-provider.yml + file: file-provider.yml.tmpl + template_driver: golang volumes: letsencrypt: diff --git a/file-provider.yml b/file-provider.yml.tmpl similarity index 100% rename from file-provider.yml rename to file-provider.yml.tmpl diff --git a/traefik.yml b/traefik.yml.tmpl similarity index 100% rename from traefik.yml rename to traefik.yml.tmpl