This seems to work, Ubuntu is hoarding port 53 though even though local services are shut off.

This commit is contained in:
2023-07-29 12:49:12 -07:00
parent bcc914d77a
commit 0915d7a018
4 changed files with 108 additions and 8 deletions

View File

@@ -10,6 +10,14 @@ version: '3'
services:
app:
build: ./
restart: always
restart: on-failure
ports:
- "53:53"
command: |
/bin/sh -c '
while :
do
sleep 8h & wait $${!}
service dnsmasq restart
done
'