Files

33 lines
702 B
Bash
Raw Permalink Normal View History

2025-11-27 17:16:20 +00:00
# -------------------------
# MariaDB Einstellungen
# -------------------------
MARIADB_VERSION=10.5
2025-11-27 17:06:17 +00:00
DB_CONTAINER_NAME=pdns-db
MYSQL_ROOT_PASSWORD=rootpassword
MYSQL_DATABASE=pdns
MYSQL_USER=pdns
MYSQL_PASSWORD=StrongPasswordHere
DB_VOLUME=db_data
2025-11-27 17:16:20 +00:00
# -------------------------
# PowerDNS Einstellungen
# -------------------------
PDNS_VERSION=latest
PDNS_CONTAINER_NAME=pdns-server
# API / Webserver
2025-11-27 17:06:17 +00:00
PDNS_API=yes
PDNS_API_KEY=SuperSecretAPIKey
PDNS_WEBSERVER=yes
PDNS_WEBSERVER_ALLOW_FROM=0.0.0.0/0
PDNS_WEBSERVER_PORT=8081
2025-11-27 17:16:20 +00:00
PDNS_API_PORT=8081
# Backend
2025-11-27 17:06:17 +00:00
PDNS_LAUNCH=gmysql
PDNS_GMYSQL_HOST=db
PDNS_GMYSQL_USER=pdns
PDNS_GMYSQL_PASSWORD=StrongPasswordHere
PDNS_GMYSQL_DBNAME=pdns
PDNS_VOLUME=pdns_data