Add unbound
Some checks reported errors
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build is passing

Signed-off-by: Christian Richter <crichter@owncloud.com>
This commit is contained in:
Christian Richter
2022-07-13 10:50:27 +02:00
parent 25b91f88b2
commit f2ea209b15
4 changed files with 49 additions and 4 deletions

5
unbound/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM debian:latest
LABEL maintainer="dragonchaser <autobuilds@datenschmutz.space>"
RUN apt-get update \
&& apt-get -y install unbound netcat
CMD ["unbound-checkconf", "&&", "unbound -d"]

26
unbound/README.md Normal file
View File

@@ -0,0 +1,26 @@
# unbound
A container for unbound https://github.com/NLnetLabs/unbound
## Running locally
**amd64**
```
$> docker run \
-p 53:53 \
-v /path/to/you/local/unboundfolder/conf:/etc/unbound \
-v /path/to/you/local/unboundfolder/lib:/var/lib/unbound \
dragonchaser/unbound:latest-amd64
```
**arm64**
```
$> docker run \
-p 53:53 \
-v /path/to/you/local/unboundfolder/conf:/etc/unbound \
-v /path/to/you/local/unboundfolder/lib:/var/lib/unbound \
dragonchaser/unbound:latest-arm64
```