一键安装Docker
环境
经本人实测,Ubuntu、Debian、Armbian、Centos均可使用。
Docker官方安装脚本
curl -fsSL https://get.docker.com | bash -s docker
搭配前文linux终端设置代理食用效果更佳。
经本人实测,Ubuntu、Debian、Armbian、Centos均可使用。
curl -fsSL https://get.docker.com | bash -s docker
搭配前文linux终端设置代理食用效果更佳。
Windows10电脑,Ubuntu(in VMware),Clash Verge1.6.1
注:本教程中,Windows与Ubuntu在同一局域网内,Ubuntu虚拟机的网络适配器为桥接模式,Windows的ip地址为192.168.124.9,Ubuntu的ip地址为192.168.124.32,下文中的ip地址按需更改。
windows10运行clash verge,开放本机的7897端口作为代理端口,境外流量由此端口进出,通过为ubuntu设置使用windows的代理端口,可实现ubuntu的境外网站流量进出自由,加速拉取GitHub、Docker等网站的文件。
export http_proxy=http://192.168.124.9:7897
export https_proxy=http://192.168.124.9:7897
sudo nano /etc/environment //修改系统环境变量文件
添加以下内容
http_proxy="http://192.168.124.9:7897"
https_proxy="http://192.168.124.9:7897"
sudo nano /etc/apt/apt.conf.d/99proxy
添加以下内容
Acquire::http::Proxy "http://192.168.124.9:7897";
Acquire::https::Proxy "http://192.168.124.9:7897";
在境外服务器运行hysteria2等代理服务,运行订阅链接转换docker,再运行shellcrash,于是可以在任一台可联网服务器设置代理服务使用前文境外服务器的流量代理加速访问任意网站。