docker-dnsmasq支持經過web頁面配置域名映射,鏡像地址:https://hub.docker.com/r/jpillora/dnsmasqgit
使用步驟以下:github
一、在Docker宿主上建立 /opt/dnsmasq.conf 配置文件web
touch /opt/dnsmasq.conf
二、docker run啓動容器docker
docker run \ --name dnsmasq \ -d \ -p 53:53/udp \ -p 5380:8080 \ -v /opt/dnsmasq.conf:/etc/dnsmasq.conf \ --log-opt "max-size=100m" \ -e "HTTP_USER=admin" \ -e "HTTP_PASS=123456" \ --restart always \ jpillora/dnsmasq
HTTP_USER:web頁面登陸的管理員賬號spa
HTTP_PASS:web頁面登陸的管理員密碼rest
三、經過 ip:5380 地址訪問web頁面,使用賬戶密碼登陸後在線編輯 dnsmasq.conf 文件code
個人dnsmasq.conf配置文件內容以下:server
server=172.16.20.150 address=/test.gfstack.geo/192.168.36.158