Adding default values for some Pi-Hole variables (#111)

This commit is contained in:
Chris Crowe 2022-03-11 09:17:03 -08:00 committed by GitHub
parent 0c87b090e1
commit 0814098044
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,15 +14,15 @@ services:
- 443:443/tcp - 443:443/tcp
- 53:53/tcp - 53:53/tcp
- 53:53/udp - 53:53/udp
- ${PIHOLE_WEBPORT}:80/tcp #Allows use of different port to access pihole web interface when other docker containers use port 80 - ${PIHOLE_WEBPORT:-80}:80/tcp #Allows use of different port to access pihole web interface when other docker containers use port 80
# - 5335:5335/tcp # Uncomment to enable unbound access on local server # - 5335:5335/tcp # Uncomment to enable unbound access on local server
# - 22/tcp # Uncomment to enable SSH # - 22/tcp # Uncomment to enable SSH
environment: environment:
- FTLCONF_REPLY_ADDR4=${FTLCONF_REPLY_ADDR4} - FTLCONF_REPLY_ADDR4=${FTLCONF_REPLY_ADDR4}
- TZ=${TZ} - TZ=${TZ:-UTC}
- WEBPASSWORD=${WEBPASSWORD} - WEBPASSWORD=${WEBPASSWORD}
- WEBTHEME=${WEBTHEME} - WEBTHEME=${WEBTHEME:-default-light}
- REV_SERVER=${REV_SERVER} - REV_SERVER=${REV_SERVER:-false}
- REV_SERVER_TARGET=${REV_SERVER_TARGET} - REV_SERVER_TARGET=${REV_SERVER_TARGET}
- REV_SERVER_DOMAIN=${REV_SERVER_DOMAIN} - REV_SERVER_DOMAIN=${REV_SERVER_DOMAIN}
- REV_SERVER_CIDR=${REV_SERVER_CIDR} - REV_SERVER_CIDR=${REV_SERVER_CIDR}