关于docker:docker搭建ddns

2次阅读

共计 1574 个字符,预计需要花费 4 分钟才能阅读完成。

ddns 容器

https://hub.docker.com/r/chen…

https://github.com/honwen/ali…

docker pull chenhw2/aliyun-ddns-cli

$ docker run -d \
    -e "AKID=[ALIYUN's AccessKey-ID]" \
    -e "AKSCT=[ALIYUN's AccessKey-Secret]" \
    -e "DOMAIN=ddns.aliyun.win" \
    -e "REDO=600" \
    chenhw2/aliyun-ddns-cli

docker pull chenhw2/aliyun-ddns-cli

# ipv4
docker run -d \
    --net=host  \
    --restart=always \
    --name my-aliyun-ddns \
    -e "AKID=LTAI5tRg6VETZJQuHiha2Mis" \
    -e "AKSCT=jDHVhnn9zJLQ7rRVrQq9Mm2F1xeIkG" \
    -e "DOMAIN=jindi.ddns.one-k.xyz" \
    -e "REDO=300" \
    chenhw2/aliyun-ddns-cli

docker rm -f my-aliyun-ddns
# ipv6
docker run -d \
    --net=host  \
    --restart=always \
    --name my-aliyun-ddns \
    -e "AKID=LTAI5tRg6VETZJQuHiha2Mis" \
    -e "AKSCT=jDHVhnn9zJLQ7rRVrQq9Mm2F1xeIkG" \
    -e "DOMAIN=jindi.ddns.one-k.xyz" \
    -e "REDO=300" \
    -e "IPV6=true" \
    chenhw2/aliyun-ddns-cli

test

# -b :: 监听 ipv6
# test
python3 -m http.server -b ::



可选参数


docker run --rm chenhw2/aliyun-ddns-cli -h
NAME:
   aliddns - aliyun-ddns-cli

USAGE:
   aliyun-ddns-cli [global options] command [command options] [arguments...]

VERSION:
   Git:[MISSING BUILD VERSION [GIT HASH]] (go1.16)

COMMANDS:
   help, h  Shows a list of commands or help for one command

   DDNS:
     list         List AliYun's DNS DomainRecords Record
     delete       Delete AliYun's DNS DomainRecords Record
     update       Update AliYun's DNS DomainRecords Record, Create Record if not exist
     auto-update  Auto-Update AliYun's DNS DomainRecords Record, Get IP using its getip

   GET-IP:
     getip          Get IP Combine 10+ different Web-API
     resolve        Get DNS-IPv4 Combine 4+ DNS Upstream

GLOBAL OPTIONS:
   --access-key-id value, --id value          AliYun's Access Key ID
   --access-key-secret value, --secret value  AliYun's Access Key Secret
   --ipapi value, --api value                 Web-API to Get IP, like: http://myip.ipip.net
   --ipv6, -6                                 IPv6
   --help, -h                                 show help
   --version, -v                              print the version
 
正文完
 0