1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:50 +02:00
dockerfiles/dnsmasq/README.md

24 lines
441 B
Markdown
Raw Normal View History

2016-04-13 19:36:03 +02:00
dnsmasq
=======
2016-07-12 07:43:54 +02:00
[Dnsmasq][1] is a Domain Name System forwarder and Dynamic Host Configuration
Protocol server for small computer networks, created as free software.
## docker-compose.yml
```yaml
dnsmasq:
image: vimagick/dnsmasq
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
volumes:
- ./dnsmasq.d:/etc/dnsmasq.d
cap_add:
- NET_ADMIN
restart: always
```
[1]: http://www.thekelleys.org.uk/dnsmasq/doc.html