Skip to content

gongarher/docker-google-domains-ddns

 
 

Repository files navigation

google-domains

This is a simple Docker container for running the Google Domains dynamic DNS update script. It will keep your domain.ddns.net DNS alias up-to-date as your home IP changes.

It is heavily based on David Coppit's work (https://github.com/coppit/docker-no-ip), since Google Domains DDN API is pretty much the same as No-IP's.

The script runs every 5 minutes (by default).

Usage

Run

docker run --name=google-domains-ddns -d -v /etc/localtime:/etc/localtime -v /config/dir/path:/config gongarher/google-domains-ddns

When run for the first time, a file named google-domains-ddns.conf will be created in the config dir, and the container will exit. Edit this file, adding your username, password, and domains. Then rerun the command.

To check the status, run: docker logs google-domains-ddns

docker-compose

services:
  google-domains-ddns:
    image: gongarher/google-domains-ddns
    container_name: google-domains-ddns
    volumes:
      - /config/dir/path:/config
      - /etc/localtime:/etc/localtime

About

Docker container for google domain DNS updater

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 84.1%
  • Dockerfile 15.9%