From 12634494e2daad705f9a8bb3bda8eefd5995be04 Mon Sep 17 00:00:00 2001 From: Thomas M Date: Thu, 27 Nov 2025 17:16:20 +0000 Subject: [PATCH] powerdns/.env aktualisiert --- powerdns/.env | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/powerdns/.env b/powerdns/.env index 33771fe..fa3a38a 100644 --- a/powerdns/.env +++ b/powerdns/.env @@ -1,26 +1,32 @@ -# Container names +# ------------------------- +# MariaDB Einstellungen +# ------------------------- +MARIADB_VERSION=10.5 DB_CONTAINER_NAME=pdns-db -PDNS_CONTAINER_NAME=pdns-server - -# MariaDB settings MYSQL_ROOT_PASSWORD=rootpassword MYSQL_DATABASE=pdns MYSQL_USER=pdns MYSQL_PASSWORD=StrongPasswordHere DB_VOLUME=db_data -# PowerDNS settings +# ------------------------- +# PowerDNS Einstellungen +# ------------------------- +PDNS_VERSION=latest +PDNS_CONTAINER_NAME=pdns-server + +# API / Webserver PDNS_API=yes PDNS_API_KEY=SuperSecretAPIKey PDNS_WEBSERVER=yes PDNS_WEBSERVER_ALLOW_FROM=0.0.0.0/0 PDNS_WEBSERVER_PORT=8081 +PDNS_API_PORT=8081 + +# Backend PDNS_LAUNCH=gmysql PDNS_GMYSQL_HOST=db PDNS_GMYSQL_USER=pdns PDNS_GMYSQL_PASSWORD=StrongPasswordHere PDNS_GMYSQL_DBNAME=pdns PDNS_VOLUME=pdns_data - -# Ports -PDNS_API_PORT=8081