Skip to content

Commit 5969c76

Browse files
authored
2022.02.1 (#101)
Update base container to 2022.02.1
1 parent 5292809 commit 5969c76

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed

one-container/docker-compose.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ services:
1818
# - 5335:5335/tcp # Uncomment to enable unbound access on local server
1919
# - 22/tcp # Uncomment to enable SSH
2020
environment:
21-
ServerIP= ${ServerIP}
22-
TZ= ${TZ}
23-
WEBPASSWORD= ${WEBPASSWORD}
24-
REV_SERVER= ${REV_SERVER}
25-
REV_SERVER_TARGET= ${REV_SERVER_TARGET}
26-
REV_SERVER_DOMAIN= ${REV_SERVER_DOMAIN}
27-
REV_SERVER_CIDR= ${REV_SERVER_CIDR}
28-
PIHOLE_DNS_= 127.0.0.1#5335 # Hardcoded to our Unbound server
29-
DNSSEC= "true" # Enable DNSSEC
21+
- ServerIP=${ServerIP}
22+
- TZ=${TZ}
23+
- WEBPASSWORD=${WEBPASSWORD}
24+
- REV_SERVER=${REV_SERVER}
25+
- REV_SERVER_TARGET=${REV_SERVER_TARGET}
26+
- REV_SERVER_DOMAIN=${REV_SERVER_DOMAIN}
27+
- REV_SERVER_CIDR=${REV_SERVER_CIDR}
28+
- PIHOLE_DNS_=127.0.0.1#5335
29+
- DNSSEC="true"
3030
volumes:
3131
- etc_pihole-unbound:/etc/pihole:rw
3232
- etc_pihole_dnsmasq-unbound:/etc/dnsmasq.d:rw

one-container/pihole-unbound/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM pihole/pihole:2022.01.1
1+
FROM pihole/pihole:2022.02.1
22
RUN apt update && apt install -y unbound
33

44
COPY lighttpd-external.conf /etc/lighttpd/external.conf

one-container/pihole-unbound/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022.01.1
1+
2022.02.1

two-container/docker-compose.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ services:
1616
- 80/tcp
1717
- 22/tcp
1818
environment:
19-
ServerIP: 192.168.1.5
20-
WEBPASSWORD: ${WEBPASSWORD}
21-
DNS1: 192.168.1.6
22-
DNS2: 192.168.1.13
19+
- ServerIP=192.168.1.5
20+
- WEBPASSWORD=${WEBPASSWORD}
21+
- PIHOLE_DNS_192.168.1.6;192.168.1.13
2322
volumes:
2423
- /volume1/docker/pihole-unbound/pihole/volume:/etc/pihole:rw
2524
- /volume1/docker/pihole-unbound/pihole/config/hosts:/etc/hosts:ro
@@ -52,4 +51,4 @@ networks:
5251
config:
5352
- subnet: 192.168.1.0/24
5453
gateway: 192.168.1.1
55-
ip_range: 192.168.1.5/30 # 192.168.1.5 and 192.168.1.6
54+
ip_range: 192.168.1.5/30 # 192.168.1.5 and 192.168.1.6

0 commit comments

Comments
 (0)