Skip to content

Commit

Permalink
💎 Update to Unbound 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewVance committed Oct 11, 2020
1 parent 69fb457 commit 5346159
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To achieve this, this setup uses two containers, one running Stubby and another

`sudo docker build -t mvance/stubby:latest .`

`sudo docker build -t mvance/unbound:1.10.1-stubby .`
`sudo docker build -t mvance/unbound:1.12.0-stubby .`

### Standard usage

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
- dns
restart: unless-stopped
unbound:
image: "mvance/unbound:1.11.0-stubby"
image: "mvance/unbound:1.12.0-stubby"
depends_on:
- "stubby"
ports:
Expand Down
8 changes: 4 additions & 4 deletions unbound/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ FROM debian:buster as unbound
LABEL maintainer="Matthew Vance"

ENV NAME=unbound \
UNBOUND_VERSION=1.11.0 \
UNBOUND_SHA256=9f2f0798f76eb8f30feaeda7e442ceed479bc54db0e3ac19c052d68685e51ef7 \
UNBOUND_DOWNLOAD_URL=https://nlnetlabs.nl/downloads/unbound/unbound-1.11.0.tar.gz
UNBOUND_VERSION=1.12.0 \
UNBOUND_SHA256=5b9253a97812f24419bf2e6b3ad28c69287261cf8c8fa79e3e9f6d3bf7ef5835 \
UNBOUND_DOWNLOAD_URL=https://nlnetlabs.nl/downloads/unbound/unbound-1.12.0.tar.gz

WORKDIR /tmp/src

Expand All @@ -66,7 +66,7 @@ RUN build_deps="curl gcc libc-dev libevent-dev libexpat1-dev make" && \
echo "${UNBOUND_SHA256} *unbound.tar.gz" | sha256sum -c - && \
tar xzf unbound.tar.gz && \
rm -f unbound.tar.gz && \
cd unbound-1.11.0 && \
cd unbound-1.12.0 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
./configure \
Expand Down
1 change: 1 addition & 0 deletions unbound/a-records.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# A Record
#local-data: "somecomputer.lan. A 192.168.1.1"

Expand Down

0 comments on commit 5346159

Please sign in to comment.