formatting updates to environment syntax (#86)
environment variable should be = not . Also updated PIHOLE_DNS_ from DNS1
This commit is contained in:
parent
adabe4c786
commit
5292809c0a
1 changed files with 9 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue