Compare commits

...

1 Commits

Author SHA1 Message Date
Christian Richter
f41f84fd38 Add unbound
Some checks reported errors
continuous-integration/drone/pr Build was killed
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-07-13 10:50:27 +02:00
3 changed files with 36 additions and 4 deletions

View File

@@ -5,7 +5,8 @@
This repo contains Dockerfiles used for autobuilding on Dockerhub.
No guarantee for completeness or functionality.
|URL|Folder|Description|x86_64|aarch64|
|:--|:-----|:----------|:----:|:-----:|
|[dragonchaser/webtest](https://hub.docker.com/r/dragonchaser/webtest)|webtest|A small container running ruby WebRick and serves static content from /web|x||x|
|[dragonchaser/motsognir](https://hub.docker.com/r/dragonchaser/motsognir) |motsognir|A container for the motsognir gopher server|x||x|
| URL | Folder | Description | x86_64 | aarch64 |
| :-- | :----- | :---------- | :----: | :-----: |
| [dragonchaser/webtest](https://hub.docker.com/r/dragonchaser/webtest) | webtest | A small container running ruby WebRick and serves static content from /web | x | x |
| [dragonchaser/motsognir](https://hub.docker.com/r/dragonchaser/motsognir) | motsognir | A container for the motsognir gopher server | x | x |
| [dragonchaser/unbound](https://hub.docker.com/r/dragonchaser/unbound) | motsognir | A container for unbound dns | x | x |

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
```