From d2c0c94e61000e1664e85d980fd8e4c760521ad5 Mon Sep 17 00:00:00 2001 From: David Mc Ken Date: Thu, 8 Dec 2022 21:19:18 -0400 Subject: [PATCH] Flesh out docker setup. --- .../install/Running-PowerDNS-Admin-on-Docker.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md b/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md index 6af7286..2f23845 100644 --- a/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md +++ b/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md @@ -1 +1,14 @@ -# Installation on docker \ No newline at end of file +# Installation on docker + +The Docker image is ngoduykhanh/powerdns-admin available on [DockerHub](https://hub.docker.com/r/ngoduykhanh/powerdns-admin) + +The supported environment variables to configure the container are located [here](../configuration/Environment-variables.md). + +You can run the container and expose the web server on port 9191 using: +```bash +docker run -d \ + -e SECRET_KEY='a-very-secret-key' \ + -v pda-data:/data \ + -p 9191:80 \ + ngoduykhanh/powerdns-admin:latest +```