Skip to content

Commit

Permalink
💎 Update to Unbound 1.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewVance committed Feb 13, 2021
1 parent c76b134 commit 6b409b3
Show file tree
Hide file tree
Showing 3 changed files with 6 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.12.0-stubby .`
`sudo docker build -t mvance/unbound:1.13.1-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.13.0-stubby"
image: "mvance/unbound:1.13.1-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 @@ -46,9 +46,9 @@ FROM debian:buster as unbound
LABEL maintainer="Matthew Vance"

ENV NAME=unbound \
UNBOUND_VERSION=1.13.0 \
UNBOUND_SHA256=a954043a95b0326ca4037e50dace1f3a207a0a19e9a4a22f4c6718fc623db2a1 \
UNBOUND_DOWNLOAD_URL=https://nlnetlabs.nl/downloads/unbound/unbound-1.13.0.tar.gz
UNBOUND_VERSION=1.13.1 \
UNBOUND_SHA256=8504d97b8fc5bd897345c95d116e0ee0ddf8c8ff99590ab2b4bd13278c9f50b8 \
UNBOUND_DOWNLOAD_URL=https://nlnetlabs.nl/downloads/unbound/unbound-1.13.1.tar.gz

WORKDIR /tmp/src

Expand All @@ -67,7 +67,7 @@ RUN build_deps="curl gcc libc-dev libevent-dev libexpat1-dev libnghttp2-dev make
echo "${UNBOUND_SHA256} *unbound.tar.gz" | sha256sum -c - && \
tar xzf unbound.tar.gz && \
rm -f unbound.tar.gz && \
cd unbound-1.13.0 && \
cd unbound-1.13.1 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
./configure \
Expand Down

0 comments on commit 6b409b3

Please sign in to comment.