From b1b2a0c7b5c47cef099c6e098f0253d60857e643 Mon Sep 17 00:00:00 2001 From: Matt Scott Date: Fri, 10 Mar 2023 18:08:24 -0500 Subject: [PATCH] Updated project documentation to use the "latest" Docker Hub image tag in preparation for the upcoming changeover where the "latest" tag will represent the current stable production release. Updated the Docker image build workflow to include the new "dev" branch. --- .github/workflows/build-and-publish.yml | 1 + README.md | 2 +- docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 52649e6..8ef7287 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -4,6 +4,7 @@ on: workflow_dispatch: push: branches: + - 'dev' - 'master' tags: - 'v*.*.*' diff --git a/README.md b/README.md index cdc0c69..f7c09d8 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ $ docker run -d \ -e SECRET_KEY='a-very-secret-key' \ -v pda-data:/data \ -p 9191:80 \ - powerdnsadmin/pda-legacy:v0.3.0 + powerdnsadmin/pda-legacy:latest ``` This creates a volume named `pda-data` to persist the default SQLite database with app configuration. diff --git a/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md b/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md index 50b2c3c..1e3ef50 100644 --- a/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md +++ b/docs/wiki/install/Running-PowerDNS-Admin-on-Docker.md @@ -10,5 +10,5 @@ docker run -d \ -e SECRET_KEY='a-very-secret-key' \ -v pda-data:/data \ -p 9191:80 \ - powerdnsadmin/pda-legacy:v0.3.0 + powerdnsadmin/pda-legacy:latest ```