5
0
mirror of https://github.com/cwinfo/powerdns-admin.git synced 2025-04-28 14:18:53 +00:00

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

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

@ -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.

@ -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
```