Add initial dnsmasq configuration and docker-compose setup

This commit is contained in:
2025-10-06 00:54:47 +02:00
commit a3efd66775
2 changed files with 16 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# Resuelve cualquier subdominio de misitio.local a 10.8.0.6
address=/.misitio.local/10.8.0.6
# Reenvía todo lo demás a Cloudflare
server=1.1.1.1
+11
View File
@@ -0,0 +1,11 @@
# docker-compose.yml
services:
dnsmasq:
image: jpillora/dnsmasq:latest
container_name: dnsmasq
ports:
- "53:53/udp"
- "53:53/tcp"
volumes:
- ./dnsmasq.conf:/etc/dnsmasq.conf:ro
restart: unless-stopped