Skip to content

MasterEvarior/hosttech-ddns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hosttech DDNS

example workflow example workflow

This small docker container acts as a dynamic DNS implementation for Hosttech.

Build

To build the container yourself, simply clone the repository and then build the container with the provided docker file. You can the run it as described in the section below.

docker build . --tag hosttech-ddns

Run

To run the docker container, you have to give it a couple of environment variables.

docker run -d \
  -e ZONE=example.com \
  -e DOMAINS=sub1,sub2 \
  -e API_KEY=eyJO93mopdns0JA \
  --name hosttech-ddns \
  ghcr.io/masterevarior/hosttech-ddns:latest

This will update the IP address for the domains sub1.example.com and sub2.example.com.

Development, improvements and more

Pull requests, improvements and issues are always welcome.