Windows端WSL安装和CPA-Manager-Plus 反代理安装
1. 安装标准的Linux 系统 wsl --install -d Ubuntu-26.04 2. 配置代理 export http_proxy = "http://127.0.0.1:10809" export https_proxy = "http://127.0.0.1:10809" 3. 安装docker 3. 1 下载一键脚本: curl -fsSL https://get.docker.com -o get-docker.sh 3.2 :执行一键安装 sudo http_proxy="http://127.0.0.1:10809" https_proxy="http://127.0.0.1:10809" sh get-docker.sh 4. docker 代理配置 sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<'EOF' { "proxies": { "http-proxy": "http://127.0.0.1:10809", "https-proxy": "http://127.0.0.1:10809", "no-proxy": "localhost,127.0.0.1" } } EOF sudo service docker restart docker compose up -d CPA URL : http://cli-proxy-api:8317 CPA 安装 :https://github.com/seakee/CPA-Manager-Plus WSL 官方安装指南: https://learn.microsoft.com/zh-cn/windows/wsl/install WSL 基本命令:https://learn.microsoft.com/zh-cn/windows/wsl/basic-commands 操作场景/阶段 涉及组件/工具 核心命令与操作步骤 配置详情...
评论
发表评论