dockerfiles/dnsmasq
kev e21de440bd update dnsmasq-arm (FIX #165) 2021-01-26 14:14:13 +08:00
..
arm update dnsmasq-arm (FIX #165) 2021-01-26 14:14:13 +08:00
dnsmasq.d Add dnssec support to dnsmasq 2020-11-14 05:37:47 +01:00
pxe add dhcp proxy option 2016-08-07 08:51:52 +08:00
Dockerfile update dnsmasq (FIX #165) 2021-01-26 13:48:02 +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