ddns 动态IP解析 docker

  • 自动获得你的公网IPV4或IPV6并解析到域名中
  • 支持Mac、Windows、Linux系统,支持ARM、x86架构
  • 支持的域名服务商 Alidns(阿里云) Dnspod(腾讯云) Cloudflare 华为云
  • 间隔5分钟同步一次
  • 支持多个域名同时解析,公司必备
  • 支持多级域名
  • 网页中配置,简单又方便,可设置登录用户名和密码
  • 网页中方便快速查看最近50条日志,无需跑docker中查看
  • [任选] 安装服务
    • 文件授权 chmod a+x ./ddns-go
    • Mac/Linux:sudo ./ddns-go -s install
    • Win(以管理员打开cmd):.\ddns-go.exe -s install
    • 安装服务也支持-l监听地址-f同步间隔时间(秒)-c自定义配置文件路径
  • [任选] 服务搭载
    • Mac/Linux:sudo ./ddns-go -s uninstall
    • Win(以管理员打开cmd):.\ddns-go.exe -s uninstall
  • [] 任选启动带参数-l监听地址-f同步间隔时间(秒)-c自定义配置文件路径。如:./ddns-go -l 127.0.0.1:9876 -f 600 -c /Users/name/ddns-go.yaml

Docker中使用

Linux的x86或arm架构,如服务器、xx盒子等等,推荐使用--net=host模式,简单点

docker run -d --name ddns-go --restart=always --net=host jeessy/ddns-go

Windows/Mac:推荐在系统中使用,Windows/Mac桌面版的docker不支持--net=host

docker run -d \
  --name ddns-go \
  --restart=always \
  -p 9876:9876 \
  jeessy/ddns-go

大神主页https://github.com/zhanglei/ddns-go

发表评论