您的位置:首页 > 新闻 > 资讯 > 自助建站 源码_黄金app_竞价系统_seo快速排名软件平台

自助建站 源码_黄金app_竞价系统_seo快速排名软件平台

2024/12/25 21:32:07 来源:https://blog.csdn.net/lggirls/article/details/144538748  浏览:    关键词:自助建站 源码_黄金app_竞价系统_seo快速排名软件平台
自助建站 源码_黄金app_竞价系统_seo快速排名软件平台

注:本文操作以debian12.8 最小化安装环境为host系统。

一、彻底卸载原有的残留

apt-get purge docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin docker-ce-rootless-extras

二、设置docker的安装源

# Add Docker's official GPG key: apt update 
apt install ca-certificates curl 
install -m 0755 -d /etc/apt/keyrings 
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc chmod a+r /etc/apt/keyrings/docker.asc # Add the repository to Apt sources: echo \ 
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \ 
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ 
tee /etc/apt/sources.list.d/docker.list > /dev/null apt update

三、安装docker 及 docker-compose

apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

四、添加国内镜像源

编写一个脚本,将registry-mirrors 中的内容替换为搜到的可用源

#!/bin/sh
cat <<-EOF > /etc/docker/daemon.json 
{"registry-mirrors": ["https://docker.linkedbus.com","https://docker.xuanyuan.me"]
}
EOF
systemctl daemon-reload
systemctl restart docker

五、安装 excalidraw

docker run -i -t -d --name exdraw -p 8090:80 excalidraw/excalidraw:latest ## 设置 exdraw 这个容器随系统自动启动docker container update --restart=always exdraw

六、打开

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com