You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, first of all, thank you very much, you made a really good project.
Excuse my lack of knowledge, I am trying to achieve something like dyndns.org is doing, i have this domain dyn.xyz, and i want that my host be like lottar.dyn.xyz -> 22.33.44.11
Hello, first of all, thank you very much, you made a really good project.
Excuse my lack of knowledge, I am trying to achieve something like dyndns.org is doing, i have this domain dyn.xyz, and i want that my host be like lottar.dyn.xyz -> 22.33.44.11
In my registrant I added this records
ddns.dyn.xyz. A 11.22.33.44
ns NS 11.22.33.44
this is my setup.
version: '3'
services:
ddns:
image: bbaerthlein/docker-ddns-server:latest
restart: always
environment:
DDNS_ADMIN_LOGIN: 'admin:$apr1VH1Az7CwF5qRV'
DDNS_DOMAINS: 'dyn.xzy'
DDNS_PARENT_NS: 'ns.dyn.xyz'
DDNS_DEFAULT_TTL: '3600'
ports:
- "53:53"
- "53:53/udp"
- "8080:8080"
volumes:
- ./bind-data:/var/cache/bind
- ./database:/root/database
Can you help me, I am stuck, not able to achieve it ..
The text was updated successfully, but these errors were encountered: