From 09bd31c7e5e266aab8a258a67ae663e9aa85bde3 Mon Sep 17 00:00:00 2001 From: Patrick Oberdorf Date: Mon, 14 Feb 2022 19:03:50 +0100 Subject: [PATCH] release of 1.15.0 --- Dockerfile | 2 +- README.md | 4 ++-- assets/sha256checksum | 2 +- docker-compose.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3f05fee..f5f171e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:bionic MAINTAINER patrick@oberdorf.net -ENV VERSION 1.13.1 +ENV VERSION 1.15.0 WORKDIR /usr/local/src/ ADD assets/sha256checksum sha256checksum diff --git a/README.md b/README.md index 4b24983..5913107 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ Unbound (with DNSSEC validation) Just use this command to start the container. Unbound will listen on port 53/udp. -```docker run --name unbound -d -p 53:53/udp -p 53:53 secns/unbound:1.13.1``` +```docker run --name unbound -d -p 53:53/udp -p 53:53 secns/unbound:1.15.0``` (optional) If you want to override the nameserver in the unbound container, you can use: -```docker run --name unbound -d -p 53:53/udp -p 53:53 --dns="127.0.0.1" secns/unbound:1.13.1``` +```docker run --name unbound -d -p 53:53/udp -p 53:53 --dns="127.0.0.1" secns/unbound:1.15.0``` # Configuration These options can be set via the environment variable -e flag: diff --git a/assets/sha256checksum b/assets/sha256checksum index 5367e1f..178a404 100644 --- a/assets/sha256checksum +++ b/assets/sha256checksum @@ -1 +1 @@ -8504d97b8fc5bd897345c95d116e0ee0ddf8c8ff99590ab2b4bd13278c9f50b8 unbound-1.13.1.tar.gz +a480dc6c8937447b98d161fe911ffc76cfaffa2da18788781314e81339f1126f unbound-1.15.0.tar.gz diff --git a/docker-compose.yml b/docker-compose.yml index bbd68bc..7b41289 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,5 @@ unbound: - image: secns/unbound:1.13.1 + image: secns/unbound:1.15.0 ports: - "53:53/udp" - "53:53"