Skip to content

Commit

Permalink
💎 Add Unbound 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewVance committed Aug 15, 2020
1 parent c80382b commit 4656efc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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.10.1-stubby"
image: "mvance/unbound:1.11.0-stubby"
depends_on:
- "stubby"
ports:
Expand Down
10 changes: 5 additions & 5 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.10.1 \
UNBOUND_SHA256=b73677c21a71cf92f15cc8cfe76a3d875e40f65b6150081c39620b286582d536 \
UNBOUND_DOWNLOAD_URL=https://nlnetlabs.nl/downloads/unbound/unbound-1.10.1.tar.gz
UNBOUND_VERSION=1.11.0 \
UNBOUND_SHA256=9f2f0798f76eb8f30feaeda7e442ceed479bc54db0e3ac19c052d68685e51ef7 \
UNBOUND_DOWNLOAD_URL=https://nlnetlabs.nl/downloads/unbound/unbound-1.11.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.10.1 && \
cd unbound-1.11.0 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
./configure \
Expand Down Expand Up @@ -140,4 +140,4 @@ EXPOSE 53/udp

HEALTHCHECK --interval=5s --timeout=3s --start-period=5s CMD drill @127.0.0.1 cloudflare.com || exit 1

CMD ["/unbound.sh"]
CMD ["/unbound.sh"]

0 comments on commit 4656efc

Please sign in to comment.