mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
.. | ||
arm | ||
dnsmasq.d | ||
pxe | ||
docker-compose.yml | ||
Dockerfile | ||
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