
1.官网入口

2.授权

3.购买服务器

4.微搭软件化

5.社区版5年

6.支付并进入控制台

7.会获得一个License码,并下载

8.使用基于docker的wsl windows
控制面板 > 程序 > 启用或关闭 Windows 功能,勾选:
9.安装ubuntu子系统
10.进入ubuntu子系统,
sudo su
wget -L -O install.sh https://software-1302110647.cos.ap-guangzhou.myqcloud.com/rc/lastest/install.sh && chmod +x install.sh
(wsl 的docker安装)
./install.sh
11.访问 http://localhost:38080
12.点击【开始安装】,填入获取的 License,按需配置访问地址。
http://localhost/dev 或 http://Windows主机IP/dev 访问开发平台。问题1.












Win + R 组合键
cmd
ipconfig

WSL 中正确安装 Docker,导致安装脚本无法拉取镜像、启动容器。
# 卸载旧版本(如果有的话) apt-get remove docker docker-engine docker.io containerd runc # 设置仓库 apt-get update apt-get install -y ca-certificates curl gnupg lsb-release # 添加Docker官方GPG密钥 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/trusted.gpg.d/docker.gpg # 设置稳定版仓库 echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null # 安装Docker Engine apt-get update apt-get install -y docker-ce docker-ce-cli containerd.io
systemctl start docker # 设置开机自启 systemctl enable docker
docker ps
完成这一步后,再重新执行微搭的安装脚本./install.sh,才能正常部署容器。

wget -L -O install.sh https://software-1302110647.cos.ap-guangzhou.myqcloud.com/rc/lastest/install.sh && chmod +x install.sh
./install.sh
失败
一直是验证失败

放弃
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。