mirror of
https://github.com/EV21/dynb.git
synced 2025-12-26 16:39:32 +01:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
75715cb0a8
|
|||
|
6313ee4347
|
|||
|
f37230401f
|
|||
|
d6c98c04ad
|
|||
|
64a5a76b6d
|
|||
|
05120c25e4
|
31
CHANGELOG.md
31
CHANGELOG.md
@@ -1,6 +1,37 @@
|
||||
# Changelog
|
||||
|
||||
|
||||
## 0.3.3 (2022-06-07)
|
||||
|
||||
### Fix
|
||||
|
||||
* Wrong parameter name for DuckDNS. [Eduard Veit]
|
||||
|
||||
### Documentation
|
||||
|
||||
* 📝 add comments to docker-compose.yml example. [Eduard Veit]
|
||||
|
||||
|
||||
## 0.3.2 (2022-05-26)
|
||||
|
||||
### Features
|
||||
|
||||
* ✨ add tzdata to Dockerfile for timezone config. [Eduard Veit]
|
||||
|
||||
You can now set your timezone with the environment variable
|
||||
`TZ="Europe/Berlin"`
|
||||
|
||||
|
||||
## 0.3.1 (2022-05-26)
|
||||
|
||||
### Fix
|
||||
|
||||
* 🐛 curl/libcurl doesn't support dns-server option. [Eduard Veit]
|
||||
|
||||
the latest alpine we are using for the docker image
|
||||
does also drops the support for that option like debian/ubuntu/etc
|
||||
|
||||
|
||||
## 0.3.0 (2022-05-26)
|
||||
|
||||
### Features
|
||||
|
||||
@@ -7,7 +7,8 @@ apk add \
|
||||
bash \
|
||||
curl \
|
||||
jq \
|
||||
bind-tools
|
||||
bind-tools \
|
||||
tzdata
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
|
||||
20
README.md
20
README.md
@@ -79,7 +79,7 @@ DYNB_SERVICE_PROVIDER=inwx
|
||||
## update method options: domrobot, dyndns
|
||||
DYNB_UPDATE_METHOD=domrobot
|
||||
|
||||
## ip mode could be either: 4, 6 or dual for dualstack
|
||||
## ip mode could be either: 4, 6 or 64 for dualstack
|
||||
DYNB_IP_MODE=64
|
||||
|
||||
## If you are using the DomRobot RPC-API enter your credentials for the web interface login here
|
||||
@@ -155,17 +155,25 @@ services:
|
||||
image: ev21/dynb
|
||||
container_name: dynb
|
||||
network_mode: host
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ./Dockerfile
|
||||
stdin_open: true
|
||||
tty: true
|
||||
environment:
|
||||
- DYNB_DYN_DOMAIN=dyndns.example.com
|
||||
- DYNB_SERVICE_PROVIDER=inwx
|
||||
# Providers: deSec, duckDNS, dynv6, inwx
|
||||
- DYNB_SERVICE_PROVIDER=desec
|
||||
# Possible update methods are: dyndns, domrobot
|
||||
- DYNB_UPDATE_METHOD=dyndns
|
||||
# IP modes: 4 (IPv4 only), 6 (IPv6 only), 64 both
|
||||
- DYNB_IP_MODE=64
|
||||
# If your provider uses tokens use DYNB_TOKEN instead of DYNB_USERNAME and DYNB_PASSWORD
|
||||
- DYNB_USERNAME=User42
|
||||
- DYNB_PASSWORD=SuperSecretPassword
|
||||
- DYNB_INTERVAL=60
|
||||
# The interval in seconds is the time the script waits before executing it again
|
||||
- DYNB_INTERVAL=300
|
||||
# TZ: Timezone setting for correct log time
|
||||
- TZ=Europe/Berlin
|
||||
# TERM: For colorful console output (attached mode)
|
||||
- TERM=xterm-256color
|
||||
```
|
||||
|
||||
## environment variables
|
||||
|
||||
5
dynb.sh
5
dynb.sh
@@ -66,7 +66,7 @@ _response=
|
||||
_statusHostname=
|
||||
_statusUsername=
|
||||
_statusPassword=
|
||||
_version=0.3.1
|
||||
_version=0.3.3
|
||||
_userAgent="DynB/$_version github.com/EV21/dynb"
|
||||
_configFile=$HOME/.local/share/dynb/.env
|
||||
_statusFile=/tmp/dynb.status
|
||||
@@ -284,7 +284,7 @@ function dynupdate
|
||||
;;
|
||||
DuckDNS* | duckdns*)
|
||||
dyndns_update_url="${DUCKDNS_DYNDNS_UPDATE_URL}"
|
||||
myip_str=ipv4
|
||||
myip_str=ip
|
||||
myipv6_str=ipv6
|
||||
;;
|
||||
*)
|
||||
@@ -812,6 +812,7 @@ function main
|
||||
while :
|
||||
do
|
||||
doUpdates
|
||||
debugMessage "wait $DYNB_INTERVAL seconds until next check"
|
||||
sleep $DYNB_INTERVAL
|
||||
done
|
||||
else doUpdates
|
||||
|
||||
Reference in New Issue
Block a user