From 5292809c0a152cc1ba0ac1d67001ed5901a385c0 Mon Sep 17 00:00:00 2001 From: Greg Ramsaran Date: Sun, 13 Feb 2022 11:31:41 -0500 Subject: [PATCH] formatting updates to environment syntax (#86) environment variable should be = not . Also updated PIHOLE_DNS_ from DNS1 --- one-container/docker-compose.yaml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/one-container/docker-compose.yaml b/one-container/docker-compose.yaml index d1f1671..f986037 100644 --- a/one-container/docker-compose.yaml +++ b/one-container/docker-compose.yaml @@ -18,16 +18,15 @@ services: # - 5335:5335/tcp # Uncomment to enable unbound access on local server # - 22/tcp # Uncomment to enable SSH environment: - ServerIP: ${ServerIP} - TZ: ${TZ} - WEBPASSWORD: ${WEBPASSWORD} - REV_SERVER: ${REV_SERVER} - REV_SERVER_TARGET: ${REV_SERVER_TARGET} - REV_SERVER_DOMAIN: ${REV_SERVER_DOMAIN} - REV_SERVER_CIDR: ${REV_SERVER_CIDR} - DNS1: 127.0.0.1#5335 # Hardcoded to our Unbound server - DNS2: 127.0.0.1#5335 # Hardcoded to our Unbound server - DNSSEC: "true" # Enable DNSSEC + ServerIP= ${ServerIP} + TZ= ${TZ} + WEBPASSWORD= ${WEBPASSWORD} + REV_SERVER= ${REV_SERVER} + REV_SERVER_TARGET= ${REV_SERVER_TARGET} + REV_SERVER_DOMAIN= ${REV_SERVER_DOMAIN} + REV_SERVER_CIDR= ${REV_SERVER_CIDR} + PIHOLE_DNS_= 127.0.0.1#5335 # Hardcoded to our Unbound server + DNSSEC= "true" # Enable DNSSEC volumes: - etc_pihole-unbound:/etc/pihole:rw - etc_pihole_dnsmasq-unbound:/etc/dnsmasq.d:rw