From c0e55c156f08c1be759140f68277891458b0e02f Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Fri, 26 Feb 2021 20:09:31 +0000 Subject: [PATCH] Remove port 443 from templates and documentation. (Redo) (#808) * Update docker_run.sh * Update docker-compose.yml.example * Update README.md * Update Dockerfile Co-authored-by: Dan Schaper --- Dockerfile | 1 - README.md | 1 - docker-compose.yml.example | 1 - docker_run.sh | 1 - 4 files changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9fff81c..5dda74b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,6 @@ ENV IPv6 True EXPOSE 53 53/udp EXPOSE 67/udp EXPOSE 80 -EXPOSE 443 ENV S6_LOGGING 0 ENV S6_KEEP_ENV 1 diff --git a/README.md b/README.md index 70f211a..68b881a 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,6 @@ services: - "53:53/udp" - "67:67/udp" - "80:80/tcp" - - "443:443/tcp" environment: TZ: 'America/Chicago' # WEBPASSWORD: 'set a secure password here or it will be random' diff --git a/docker-compose.yml.example b/docker-compose.yml.example index 031eb49..0243c0e 100644 --- a/docker-compose.yml.example +++ b/docker-compose.yml.example @@ -12,7 +12,6 @@ services: - "53:53/udp" - "67:67/udp" - "80:80/tcp" - - "443:443/tcp" environment: TZ: 'America/Chicago' # WEBPASSWORD: 'set a secure password here or it will be random' diff --git a/docker_run.sh b/docker_run.sh index b17195d..f95f40a 100755 --- a/docker_run.sh +++ b/docker_run.sh @@ -10,7 +10,6 @@ docker run -d \ --name pihole \ -p 53:53/tcp -p 53:53/udp \ -p 80:80 \ - -p 443:443 \ -e TZ="America/Chicago" \ -v "${PIHOLE_BASE}/etc-pihole/:/etc/pihole/" \ -v "${PIHOLE_BASE}/etc-dnsmasq.d/:/etc/dnsmasq.d/" \