文档地址:https://cloud.google.com/run/docs/quickstarts/build-and-deploy建议在Google Cloud Shell下操作,可以不用管环境等等问题,直接操作。首先,假设已经有了编写好的Dockerfile在当前目录下使用 Cloud Build 构建容器映像,方法是从包含 Dockerfile……继续阅读 » haoduck 3年前 (2021-03-17) 18浏览 0评论1个赞
Github仓库地址:https://github.com/joshuatz/gcp-proxy-func下载地址:https://github.com/joshuatz/gcp-proxy-func/archive/master.zip下载好解压,config.example.js改名为config.js编辑里面的内容为你想代理的URL然后压缩成z……继续阅读 » haoduck 3年前 (2021-03-17) 34浏览 0评论0个赞
可以部署Docker镜像,挺方便的https://tc-nokzst7bqq-uc.a.run.app/……继续阅读 » haoduck 3年前 (2021-03-17) 29浏览 0评论0个赞
需求是有时写Shell脚本是需要判断是否是国内服务器,来使用国内CDN或对国内友好的下载源。正文地址是:http://104.19.19.19/cdn-cgi/trace104.19.19.19可以是任意一个CloudFlare CDN的IP但尽量不要用1.1.1.1之类的国内被阻断的IP访问http://104.19.19.19/cdn-cgi/……继续阅读 » haoduck 3年前 (2021-03-15) 37浏览 0评论0个赞
假设host1的IP是1.1.1.1host2的IP是2.2.2.2首先,要确定内核支持ip_gre模块modprobe ip_grelsmod | grep gre在host1执行ip tunnel add gre1 mode gre local 1.1.1.1 remote 2.2.2.2 ttl 255ip link s……继续阅读 » haoduck 3年前 (2021-03-12) 30浏览 0评论0个赞
有些系统模板不自带ifconfig,我们想用的时候直接就ifconfig not found。yum/apt install ifconfig肯定是不行的,因为这不是一个单独的软件包。这时候,往下看吧。CentOSyum whatprovides+命令如:yum whatprovides ifconfigyum whatprovides nsl……继续阅读 » haoduck 3年前 (2021-03-11) 29浏览 0评论1个赞
github_name=你的github用户名github_repo_key=你的有repo权限的key或者github密码repo_name=你要创建的仓库名private=true #true或者false,true为创建私有仓库curl -u $github_name:$github_repo_key https://api.git……继续阅读 » haoduck 3年前 (2021-03-11) 20浏览 0评论0个赞
这个是使用Go语言编写的流媒体NetFlix解锁检测脚本。Github地址:https://github.com/sjlleo/netflix-verify使用方法简约模式Github主站下载链接(IPv6 Only的VPS请使用下方的CDN链接):wget -N -O nf https://github.com/sjlleo/netflix-……继续阅读 » haoduck 3年前 (2021-03-11) 37浏览 0评论0个赞
本文以CentOS7 x64系统为例一、安装wireguard-goGithub地址:https://github.com/WireGuard/wireguard-go编译安装一些需要的软件yum install -y wget git make如果是debian/ubuntu:apt install -y wget git make1.安装go……继续阅读 » haoduck 3年前 (2021-03-11) 254浏览 1评论2个赞
好像并没有什么用docker run -v /var/run/docker.sock:/var/run/docker.sock……继续阅读 » haoduck 3年前 (2021-03-11) 16浏览 0评论0个赞