Skip to content

Commit

Permalink
release 9.9.5-20161106
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameer Naik committed Nov 6, 2016
1 parent c0c3018 commit 54a7fca
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![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)

# sameersbn/bind:9.9.5-20161104
# sameersbn/bind:9.9.5-20161106

- [Introduction](#introduction)
- [Contributing](#contributing)
Expand Down Expand Up @@ -49,7 +49,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/bind)
```bash
docker pull sameersbn/bind:9.9.5-20161104
docker pull sameersbn/bind:9.9.5-20161106
```

Alternatively you can build the image yourself.
Expand All @@ -66,7 +66,7 @@ Start BIND using:
docker run --name bind -d --restart=always \
--publish 53:53/tcp --publish 53:53/udp --publish 10000:10000/tcp \
--volume /srv/docker/bind:/data \
sameersbn/bind:9.9.5-20161104
sameersbn/bind:9.9.5-20161106
```

*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/)*
Expand All @@ -85,7 +85,7 @@ You can customize the launch command of BIND server by specifying arguments to `
docker run --name bind -it --rm \
--publish 53:53/tcp --publish 53:53/udp --publish 10000:10000/tcp \
--volume /srv/docker/bind:/data \
sameersbn/bind:9.9.5-20161104 -h
sameersbn/bind:9.9.5-20161106 -h
```

## Persistence
Expand All @@ -110,7 +110,7 @@ To upgrade to newer releases:
1. Download the updated Docker image:

```bash
docker pull sameersbn/bind:9.9.5-20161104
docker pull sameersbn/bind:9.9.5-20161106
```

2. Stop the currently running image:
Expand All @@ -130,7 +130,7 @@ To upgrade to newer releases:
```bash
docker run -name bind -d \
[OPTIONS] \
sameersbn/bind:9.9.5-20161104
sameersbn/bind:9.9.5-20161106
```

## Shell Access
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.9.5-20161104
9.9.5-20161106
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2'
services:
bind:
restart: always
image: sameersbn/bind:9.9.5-20161104
image: sameersbn/bind:9.9.5-20161106
ports:
- "53:53/udp"
- "53:53/tcp"
Expand Down

0 comments on commit 54a7fca

Please sign in to comment.