diff --git a/README.md b/README.md index 45bad41..ae69e65 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml index 0fb9c6c..4d7866a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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: diff --git a/unbound/Dockerfile b/unbound/Dockerfile index 50bd5aa..35643e4 100644 --- a/unbound/Dockerfile +++ b/unbound/Dockerfile @@ -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 @@ -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 \