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.
This commit is contained in:
Matt Scott 2023-03-10 18:08:24 -05:00
parent ff2b532c29
commit b1b2a0c7b5
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ on:
workflow_dispatch: workflow_dispatch:
push: push:
branches: branches:
- 'dev'
- 'master' - 'master'
tags: tags:
- 'v*.*.*' - 'v*.*.*'

View File

@ -45,7 +45,7 @@ $ docker run -d \
-e SECRET_KEY='a-very-secret-key' \ -e SECRET_KEY='a-very-secret-key' \
-v pda-data:/data \ -v pda-data:/data \
-p 9191:80 \ -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. This creates a volume named `pda-data` to persist the default SQLite database with app configuration.

View File

@ -10,5 +10,5 @@ docker run -d \
-e SECRET_KEY='a-very-secret-key' \ -e SECRET_KEY='a-very-secret-key' \
-v pda-data:/data \ -v pda-data:/data \
-p 9191:80 \ -p 9191:80 \
powerdnsadmin/pda-legacy:v0.3.0 powerdnsadmin/pda-legacy:latest
``` ```