1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-08-09 04:48:39 +02:00

Compare commits

..

3 Commits

Author SHA1 Message Date
cn
bf68049260 release: 3.1.0 2020-08-19 14:13:07 +02:00
cn
35ced6468e ci: allow manual run of vulnscan action workflow 2020-08-18 22:53:33 +02:00
cn
4833328557 docs: improve docker run instructions 2020-08-18 22:40:30 +02:00
4 changed files with 5 additions and 4 deletions

View File

@@ -4,6 +4,7 @@ name: vulnscan
on: on:
schedule: schedule:
- cron: '7 4 * * 4' # weekly on thursday morning - cron: '7 4 * * 4' # weekly on thursday morning
workflow_dispatch:
jobs: jobs:
scan-released-dockerimages: scan-released-dockerimages:

View File

@@ -1,6 +1,6 @@
# Changelog # Changelog
## 3.1.0 ## 3.1.0 (August 19, 2020)
IMPROVEMENTS: IMPROVEMENTS:

View File

@@ -81,7 +81,7 @@ The Docker image consumes the same configuration file in YAML format as the gem,
host: "0.0.0.0" host: "0.0.0.0"
port: 8080 port: 8080
# omit the logfile: option so logging to STDOUT will happen automatically # omit the logfile: option so logging to STDOUT will happen automatically
db: "/var/lib/db.json" db: "/var/lib/dyndnsd/db.json"
# User's settings for updater and permissions follow here! # User's settings for updater and permissions follow here!
``` ```
@@ -94,7 +94,7 @@ Run the Docker image exposing the DynDNS-API on host port 8080 via:
docker run -d --name dyndnsd \ docker run -d --name dyndnsd \
-p 8080:8080 \ -p 8080:8080 \
-v /host/path/to/dyndnsd/config.yml:/etc/dyndnsd/config.yml \ -v /host/path/to/dyndnsd/config.yml:/etc/dyndnsd/config.yml \
-v /host/path/to/dyndnsd/db.json:/var/lib/db.json \ -v /host/ptherpath/to/dyndnsd/datadir:/var/lib/dyndnsd \
cmur2/dyndnsd:vX.Y.Z cmur2/dyndnsd:vX.Y.Z
``` ```

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Dyndnsd module Dyndnsd
VERSION = '3.1.0.rc1' VERSION = '3.1.0'
end end