Skip to content

Commit

Permalink
Adding default values for some Pi-Hole variables (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscrowe authored Mar 11, 2022
1 parent 0c87b09 commit 0814098
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions one-container/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ services:
- 443:443/tcp
- 53:53/tcp
- 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
# - 22/tcp # Uncomment to enable SSH
environment:
- FTLCONF_REPLY_ADDR4=${FTLCONF_REPLY_ADDR4}
- TZ=${TZ}
- TZ=${TZ:-UTC}
- WEBPASSWORD=${WEBPASSWORD}
- WEBTHEME=${WEBTHEME}
- REV_SERVER=${REV_SERVER}
- WEBTHEME=${WEBTHEME:-default-light}
- REV_SERVER=${REV_SERVER:-false}
- REV_SERVER_TARGET=${REV_SERVER_TARGET}
- REV_SERVER_DOMAIN=${REV_SERVER_DOMAIN}
- REV_SERVER_CIDR=${REV_SERVER_CIDR}
Expand Down

0 comments on commit 0814098

Please sign in to comment.