From 3889ceaf4c4a9df90858dfc6d431275ab5ab38fb Mon Sep 17 00:00:00 2001 From: Matt Scott Date: Fri, 9 Dec 2022 12:55:45 -0500 Subject: [PATCH] Updated documentation to reflect the new Docker Hub home of the project's Docker images. --- README.md | 2 +- docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8067855..af25413 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ $ docker run -d \ -e SECRET_KEY='a-very-secret-key' \ -v pda-data:/data \ -p 9191:80 \ - ngoduykhanh/powerdns-admin:latest + powerdnsadmin/pda-legacy:latest ``` This creates a volume called `pda-data` to persist the SQLite database with the configuration. diff --git a/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md b/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md index 2f23845..1e3ef50 100644 --- a/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md +++ b/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md @@ -1,6 +1,6 @@ # Installation on docker -The Docker image is ngoduykhanh/powerdns-admin available on [DockerHub](https://hub.docker.com/r/ngoduykhanh/powerdns-admin) +The Docker image is powerdnsadmin/pda-legacy available on [DockerHub](https://hub.docker.com/r/powerdnsadmin/pda-legacy) The supported environment variables to configure the container are located [here](../configuration/Environment-variables.md). @@ -10,5 +10,5 @@ docker run -d \ -e SECRET_KEY='a-very-secret-key' \ -v pda-data:/data \ -p 9191:80 \ - ngoduykhanh/powerdns-admin:latest + powerdnsadmin/pda-legacy:latest ```