[DOCKER] Remove quotes from docker env files, as docker (or at least docker-compose) include them in the actual value

This commit is contained in:
2021-03-23 17:28:52 +00:00
parent c894a4faa4
commit b824a0425e
3 changed files with 27 additions and 43 deletions

View File

@@ -12,7 +12,7 @@ lets_path="/etc/letsencrypt"
echo "Starting bootstrap"
if [ ! -e "$lets_path/live//options-ssl-nginx.conf" ] || [ ! -e "$lets_path/live/ssl-dhparams.pem" ];then
if [ ! -e "${lets_path}/live/${DOMAIN}/options-ssl-nginx.conf" ] || [ ! -e "$lets_path/live/ssl-dhparams.pem" ];then
echo "### Downloading recommended TLS parameters ..."
mkdir -p "${lets_path}/live/${DOMAIN}"