18 lines
327 B
YAML
18 lines
327 B
YAML
|
# 2023-07-29
|
||
|
#
|
||
|
# Local DNS server which properly handles DNS splitting.
|
||
|
# Necessary when using junk ISP gateways and running a domain.
|
||
|
# https://thekelleys.org.uk/dnsmasq/doc.html
|
||
|
#
|
||
|
|
||
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
app:
|
||
|
container_name: dns-app
|
||
|
build: ./
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "53:53/udp"
|
||
|
- "53:53/tcp"
|