1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-06 03:54:48 +02:00
dockerfiles/dnsmasq
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
docker-compose.yml
Dockerfile update dnsmasq (FIX #165) 2021-01-26 13:48:02 +08:00
README.md

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