Skip to content

Commit 508bc5a

Browse files
authored
Merge pull request #95 from sameersbn/new-releases
release 9.16.1-20200524
2 parents 28f7f72 + 47e56d0 commit 508bc5a

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,15 +223,15 @@ jobs:
223223
name: Launch bind container
224224
command: docker run --name bind -d --net testnet sameersbn/bind:${CIRCLE_TAG:-latest}
225225
- run:
226-
name: Wait for container bootup
226+
name: Wait for bootup
227227
command: sleep 15
228228
- run:
229229
name: Container info
230-
command: docker ps -a
230+
command: docker ps
231231
- run:
232232
name: Test image
233233
command: |
234-
docker run --rm --net testnet sameersbn/bind:${CIRCLE_TAG:-latest} host www.google.com bind
234+
docker run --rm --net testnet sameersbn/bind:${CIRCLE_TAG:-latest} host www.google.com bind
235235
236236
publish-dockerhub:
237237
executor: docker/machine
@@ -281,7 +281,7 @@ workflows:
281281
jobs:
282282
- shellcheck/check:
283283
name: shellcheck
284-
ignore: SC2086,SC2181
284+
ignore: SC2086,SC2181,SC2124
285285
filters:
286286
tags:
287287
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
FROM ubuntu:bionic-20200403 AS add-apt-repositories
1+
FROM ubuntu:focal-20200423 AS add-apt-repositories
22

33
RUN apt-get update \
44
&& DEBIAN_FRONTEND=noninteractive apt-get install -y gnupg \
55
&& apt-key adv --fetch-keys http://www.webmin.com/jcameron-key.asc \
66
&& echo "deb http://download.webmin.com/download/repository sarge contrib" >> /etc/apt/sources.list
77

8-
FROM ubuntu:bionic-20200403
8+
FROM ubuntu:focal-20200423
99

1010
LABEL maintainer="sameer@damagehead.com"
1111

1212
ENV BIND_USER=bind \
13-
BIND_VERSION=9.11.3 \
13+
BIND_VERSION=9.16.1 \
1414
WEBMIN_VERSION=1.941 \
1515
DATA_DIR=/data
1616

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Circle CI](https://circleci.com/gh/sameersbn/docker-bind.svg?style=shield)](https://circleci.com/gh/sameersbn/docker-bind) [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/bind/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/bind)
22

3-
# sameersbn/bind:9.11.3-20200507
3+
# sameersbn/bind:9.16.1-20200524
44

55
- [Introduction](#introduction)
66
- [Contributing](#contributing)
@@ -49,7 +49,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co
4949
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/bind)
5050
5151
```bash
52-
docker pull sameersbn/bind:9.11.3-20200507
52+
docker pull sameersbn/bind:9.16.1-20200524
5353
```
5454

5555
Alternatively you can build the image yourself.
@@ -66,7 +66,7 @@ Start BIND using:
6666
docker run --name bind -d --restart=always \
6767
--publish 53:53/tcp --publish 53:53/udp --publish 10000:10000/tcp \
6868
--volume /srv/docker/bind:/data \
69-
sameersbn/bind:9.11.3-20200507
69+
sameersbn/bind:9.16.1-20200524
7070
```
7171

7272
*Alternatively, you can use the sample [docker-compose.yml](docker-compose.yml) file to start the container using [Docker Compose](https://docs.docker.com/compose/)*
@@ -85,7 +85,7 @@ You can customize the launch command of BIND server by specifying arguments to `
8585
docker run --name bind -it --rm \
8686
--publish 53:53/tcp --publish 53:53/udp --publish 10000:10000/tcp \
8787
--volume /srv/docker/bind:/data \
88-
sameersbn/bind:9.11.3-20200507 -h
88+
sameersbn/bind:9.16.1-20200524 -h
8989
```
9090

9191
## Persistence
@@ -124,7 +124,7 @@ To upgrade to newer releases:
124124
1. Download the updated Docker image:
125125

126126
```bash
127-
docker pull sameersbn/bind:9.11.3-20200507
127+
docker pull sameersbn/bind:9.16.1-20200524
128128
```
129129

130130
2. Stop the currently running image:
@@ -144,7 +144,7 @@ To upgrade to newer releases:
144144
```bash
145145
docker run -name bind -d \
146146
[OPTIONS] \
147-
sameersbn/bind:9.11.3-20200507
147+
sameersbn/bind:9.16.1-20200524
148148
```
149149

150150
## Shell Access

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.11.3-20200507
1+
9.16.1-20200524

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '2'
33
services:
44
bind:
55
restart: always
6-
image: sameersbn/bind:9.11.3-20200507
6+
image: sameersbn/bind:9.16.1-20200524
77
ports:
88
- "53:53/udp"
99
- "53:53/tcp"

0 commit comments

Comments
 (0)