13
.drone.star
13
.drone.star
@@ -14,6 +14,13 @@ def main(ctx):
|
||||
stepBuildWeekly("amd64", "webtest"),
|
||||
stepBuildWeekly("arm64", "webtest"),
|
||||
|
||||
stepPR("amd64", "unbound"),
|
||||
stepPR("arm64", "unbound"),
|
||||
stepMergeMaster("amd64", "unbound"),
|
||||
stepMergeMaster("arm64", "unbound"),
|
||||
stepBuildWeekly("amd64", "unbound"),
|
||||
stepBuildWeekly("arm64", "unbound"),
|
||||
|
||||
notify(ctx),
|
||||
]
|
||||
|
||||
@@ -50,16 +57,22 @@ def notify(ctx):
|
||||
"docker-build-motsognir-arm64",
|
||||
"docker-build-webtest-amd64",
|
||||
"docker-build-webtest-arm64",
|
||||
"docker-build-unbound-amd64",
|
||||
"docker-build-unbound-arm64",
|
||||
|
||||
"docker-publish-motsognir-amd64",
|
||||
"docker-publish-motsognir-arm64",
|
||||
"docker-publish-webtest-amd64",
|
||||
"docker-publish-webtest-arm64",
|
||||
"docker-publish-unbound-amd64",
|
||||
"docker-publish-unbound-arm64",
|
||||
|
||||
"docker-publish-weekly-motsognir-amd64",
|
||||
"docker-publish-weekly-motsognir-arm64",
|
||||
"docker-publish-weekly-webtest-amd64",
|
||||
"docker-publish-weekly-webtest-arm64",
|
||||
"docker-publish-weekly-unbound-amd64",
|
||||
"docker-publish-weekly-unbound-arm64",
|
||||
],
|
||||
"trigger": {
|
||||
"ref": [
|
||||
|
||||
@@ -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
5
unbound/Dockerfile
Normal 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
26
unbound/README.md
Normal 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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user