1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-10 11:10:27 +02:00
dockerfiles/pdnsd/README.md

24 lines
498 B
Markdown
Raw Normal View History

2015-06-30 02:41:42 +02:00
pdnsd
=====
`pdnsd` is a proxy DNS server with permanent caching (the cache contents are
written to hard disk on exit) that is designed to cope with unreachable or down
DNS servers (for example in dial-in networking).
Since version 1.1.0, pdnsd supports negative caching.
## docker-compose.yml
```
pdnsd:
image: vimagick/pdnsd
# volumes:
# - pdnsd.conf:/etc/pdnsd.conf
ports:
- "53:53/tcp"
- "53:53/udp"
restart: always
```
> Uncomment `volumes` to use customized config file.