A simple alternative to DDCLIENT.
Go to file
Antoine Langlois 3cb596db39
add license
2021-03-19 23:32:11 +01:00
cmd feat: DNS lookup instead of HTTP HEAD request (#1) 2021-03-18 10:12:04 +01:00
pkg feat: add new provider and update config template (#2) 2021-03-19 22:26:16 +01:00
.dockerignore add config file, Makefile and .gitignore 2021-03-19 23:20:30 +01:00
.gitignore add docker and makefile 2021-03-15 19:11:52 +01:00
Dockerfile add docker and makefile 2021-03-15 19:11:52 +01:00
LICENSE add license 2021-03-19 23:32:11 +01:00
Makefile update latest command 2021-03-19 23:17:56 +01:00
README.md update readme 2021-03-19 23:18:05 +01:00
config.go feat: add new provider and update config template (#2) 2021-03-19 22:26:16 +01:00
ddnsclient.yaml.sample feat: add new provider and update config template (#2) 2021-03-19 22:26:16 +01:00
go.mod rename module name 2021-03-14 16:02:04 +01:00
go.sum feat: add new provider and update config template (#2) 2021-03-19 22:26:16 +01:00
main.go feat: add new provider and update config template (#2) 2021-03-19 22:26:16 +01:00

README.md

DDNS Client

How to install DDNS-CLIENT

Simply run the command go get github.com/datahearth/ddnsclient

Run the client

You have 2 options to run the DDNS client.
You can run it as:

  • docker container: docker run -v /path/to/config/ddnsclient.yaml:/ddnsclient.yaml --name ddnsclient datahearth/ddnsclient:latest

  • binary executable: ./ddnsclient (make sure the config is in the same directory with the name ddnsclient.yaml)

Supported providers

  • OVH
  • Google (only one subdomain accepted for now)

Note: For now, ddnsclient supports only one credential for each provider.

Use the library

You can also plug the library to your own system. Just get the module and you'll find everything needed to start it. If something is missing or is not working properly, please create an issue so I can fix it.

Contributing

You can contribute to the project by submitting an issue and resolve issues by creating PRs. I'll look at them and validate your changes if they're correct.