* Pull DOCKER:
docker pull nonnichen/nonnixunlei
docker run -d --name Thunder --restart=always -v /mnt/download:/data -p 8899:80 nonnichen/nonnixunlei:latest
* Get Thunder ACTIVE CODE:
docker logs Thunder
* Go to website to active remote Thunder:
http://yuancheng.xunlei.com
* Visit on Web browse:
http://Server IP:8899
拉取安装镜像:
docker run --name nonniss --restart=always -e PASSWORD=xxxxxxxx -e METHOD=chacha20 -p 55555:8388 -p 55555:8388/udp -d nonnichen/nonniss
可选加密方法:
The default cipher is chacha20-ietf-poly1305.
All encrypt method:
rc4-md5
aes-128-gcm
aes-192-gcm
aes-256-gcm
aes-128-cfb
aes-192-cfb
aes-256-cfb
aes-128-ctr
aes-192-ctr
aes-256-ctr
camellia-128-cfb
camellia-192-cfb
camellia-256-cfb
bf-cfb
chacha20-ietf-poly1305
xchacha20-ietf-poly1305
salsa20
chacha20
chacha20-ietf
安装镜像并运行:
docker run --name=iperf3 -d --restart=unless-stopped -p 5201:5201/tcp -p 5201:5201/udp nonnichen/iperf3
Test on Windows:
Go to https://iperf.fr download iPerf3, then run test in CMD:
iperf3.exe -c IP -t 10
Test on Openwrt:
opkg install iperf3
iperf3 -c 207.148.69.145 -t 30
THUNDER
拉取迅雷 DOCKER 镜像:
docker pull nonnichen/nonnixunlei
docker run -d --name Thunder --restart=always -v /mnt/download:/data -p 8899:80 nonnichen/nonnixunlei:latest
获取迅雷激活码 ACTIVE CODE:
docker logs Thunder
前去迅雷网站绑定激活码:
http://yuancheng.xunlei.com
浏览器访问:
http://Server IP:8899
UBUNTU:
apt-get update
apt install docker.io
拉取Registry:
docker run -d -p 5000:5000 --name registry --restart=always -v /opt/data/registry:/tmp/registry registry
查看端口监听:
ps -ef|grep 5000
查看 registry 等镜像:
docker images
给需要上传的镜像打TAG:
docker tag {imageID} IP:5000/imagename
e.g.
docker tag 8090qbcdbalala 192.168.0.55:5000/nonnikms
上传镜像到仓库:
docker push 192.168.0.55:5000/nonnikms
从私有仓库拉取镜像:
docker pull 192.168.0.55:5000/nonnikms
查看 Registry 中所有镜像信息:
curl http://192.168.1.160:5000/v2/_catalog
查看 Registry 中标签列表:
curl http://192.168.1.160:5000/v2/smokeping/tags/list
注:
若 docker push 提示:http: server gave HTTP response to HTTPS client 错误的解决方法:
在客户端 /etc/docker 下添加 daemon.json
{
"insecure-registries": ["192.168.0.55:5000"]
}
重启docker:
systemctl restart docker