https://github.com/tsfoster/update-ddns
https://github.com/tsfoster/update-ddns
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tsfoster/update-ddns
- Owner: TSFoster
- Created: 2018-09-21T10:43:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-21T10:43:21.000Z (over 7 years ago)
- Last Synced: 2025-07-27T18:14:59.502Z (11 months ago)
- Language: Shell
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Update DDNS
This script will periodically call a specified URL, and is intended to be used in conjunction with a Dynamic DNS service.
## Usage
```sh
# Required. In this example, the zzzz.io service is used, and it is assumed that $DDNS_USERNAME and $DDNS_TOKEN contain the relevant values.
DDNS_UPDATE_ADDRESS=https://zzzz.io/api/v1/update/$DDNS_USERNAME/?token=$DDNS_TOKEN
# Optional. A frequence understood by the sleep command (i.e. number followed by s/m/h). Default: 1h
DDNS_UPDATE_FREQUENCY=1h
docker run \
--env DDNS_UPDATE_ADDRESS=$DDNS_UPDATE_ADDRESS \
--env DDNS_UPDATE_FREQUENCY=$DDNS_UPDATE_FREQUENCY \
tsfoster/update-ddns:latest
```