Initial open source release

This commit is contained in:
Ronni Skansing
2025-08-21 16:14:09 +02:00
commit 11cf01f08e
488 changed files with 97180 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# dnsmasq
docker/dnsmasq/etc/dnsmasq.conf
+3
View File
@@ -0,0 +1,3 @@
# Docker
This folder contains various extras for containers such as configuration.
+1
View File
@@ -0,0 +1 @@
address=/.test/172.20.0.8
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
# Get the IP address of the backend container
BACKEND_IP=$(getent hosts backend | awk '{ print $1 }')
# Update the dnsmasq configuration file
echo "address=/.test/$BACKEND_IP" > /etc/dnsmasq.conf
echo "BACKEND_IP=$BACKEND_IP"
echo "Loaded configuration (/etc/dnsmasq.conf):"
cat /etc/dnsmasq.conf
# Run dnsmasq in the foreground
dnsmasq -k --port=5353