Skip to content

Files

Latest commit

684740c · Aug 7, 2016

History

History
This branch is 1617 commits behind vimagick/dockerfiles:master.

dnsmasq

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 12, 2016
Jul 20, 2016
Aug 7, 2016
Jul 12, 2016
Jul 12, 2016
Apr 13, 2016

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