dockerfiles/dnsmasq
kev 82143a5b63 swith to new domain: easypi.pro 2017-05-08 07:05:07 +08:00
..
arm update dnsmasq 2016-07-12 13:45:42 +08:00
dnsmasq.d fix clamav 2016-07-21 07:47:40 +08:00
pxe add dhcp proxy option 2016-08-07 08:51:52 +08:00
Dockerfile swith to new domain: easypi.pro 2017-05-08 07:05:07 +08:00
README.md update dnsmasq 2016-07-12 13:45:42 +08:00
docker-compose.yml fix dnsmasq 2016-04-14 02:00:10 +08:00

dnsmasq

Dnsmasq is a Domain Name System forwarder and Dynamic Host Configuration Protocol server for small computer networks, created as free software.

docker-compose.yml

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