diff --git a/README.md b/README.md index 01dc87b..cf23ad1 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ Here is a rundown of other arguments for your docker-compose / docker run. | Docker Arguments | Description | | ---------------- | ----------- | -| `-p :` **Recommended** | Ports to expose (53, 80, 67, 443), the bare minimum ports required for Pi-holes HTTP and DNS services +| `-p :` **Recommended** | Ports to expose (53, 80, 67), the bare minimum ports required for Pi-holes HTTP and DNS services | `--restart=unless-stopped`
**Recommended** | Automatically (re)start your Pi-hole on boot or in the event of a crash | `-v $(pwd)/etc-pihole:/etc/pihole`
**Recommended** | Volumes for your Pi-hole configs help persist changes across docker image updates | `-v $(pwd)/etc-dnsmasq.d:/etc/dnsmasq.d`
**Recommended** | Volumes for your dnsmasq configs help persist changes across docker image updates diff --git a/docker-compose-nginx-proxy.yml b/docker-compose-nginx-proxy.yml index 981cb9d..cf17441 100644 --- a/docker-compose-nginx-proxy.yml +++ b/docker-compose-nginx-proxy.yml @@ -20,7 +20,6 @@ services: - '53:53/udp' - "67:67/udp" - '8053:80/tcp' - - "443:443/tcp" volumes: - './etc-pihole/:/etc/pihole/' - './etc-dnsmasq.d/:/etc/dnsmasq.d/'