https://github.com/akafeng/docker-dnsmasq
๐ณ Docker Image Packaging for Dnsmasq
https://github.com/akafeng/docker-dnsmasq
debian dhcp-server dns-server dnsmasq docker
Last synced: about 1 month ago
JSON representation
๐ณ Docker Image Packaging for Dnsmasq
- Host: GitHub
- URL: https://github.com/akafeng/docker-dnsmasq
- Owner: akafeng
- Created: 2023-03-26T06:26:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-28T08:56:30.000Z (over 1 year ago)
- Last Synced: 2025-01-28T09:29:45.318Z (over 1 year ago)
- Topics: debian, dhcp-server, dns-server, dnsmasq, docker
- Language: Dockerfile
- Homepage: https://ghcr.io/akafeng/dnsmasq
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Dnsmasq
Dnsmasq provides a DNS server, a DHCP server with support for DHCPv6 and PXE, and a TFTP server.
Container Registry ยท
Project Source
---
### Pull The Image
```bash
$ docker pull ghcr.io/akafeng/dnsmasq
```
### Start Container
```bash
$ docker run -d \
-v /etc/dnsmasq.conf:/etc/dnsmasq.conf \
--cap-add=NET_ADMIN \
--network=host \
--restart=always \
--name=dnsmasq \
ghcr.io/akafeng/dnsmasq
```