From 72182636d805df7b5e0b92254231fec330b9df26 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Mon, 18 Dec 2017 15:08:47 +0900 Subject: [PATCH] fix compose, can configure let's encrypt email --- Production/docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Production/docker-compose.yml b/Production/docker-compose.yml index c7ac9e3..4265c31 100644 --- a/Production/docker-compose.yml +++ b/Production/docker-compose.yml @@ -61,16 +61,16 @@ services: BTCPAY_EXPLORERURL: http://nbxplorer:32838/ BTCPAY_BIND: 0.0.0.0:49392 BTCPAY_INTERNALURL: http://btcpayserver:49392/ - BTCPAY_EXTERNALURL: https://$(BTCPAY_HOST)/ + BTCPAY_EXTERNALURL: https://${BTCPAY_HOST}/ # NGINX settings VIRTUAL_NETWORK: nginx-proxy VIRTUAL_PORT: 49392 - VIRTUAL_HOST: $(BTCPAY_HOST) + VIRTUAL_HOST: ${BTCPAY_HOST} # Let's encrypt settings - LETSENCRYPT_HOST: $(BTCPAY_HOST) - LETSENCRYPT_EMAIL: email@btcpayserver.com + LETSENCRYPT_HOST: ${BTCPAY_HOST} + LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL-email@btcpayserver.com} links: - nbxplorer