1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:27 +02:00
2021-01-26 14:14:13 +08:00
..
2021-01-26 14:14:13 +08:00
2020-11-14 05:37:47 +01:00
2021-01-26 13:48:02 +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