1 Star 0 Fork 132

YaroED/chatgpt-on-wechat

forked from zhayujie/chatgpt-on-wechat 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
deploy.local.sh 729 Bytes
一键复制 编辑 原始数据 按行查看 历史
YaroED 提交于 2024-08-19 14:57 . fix: 本地打包镜像优化
docker build -t chatgpt-on-wechat:latest .
docker save -o chatgpt-on-wechat.tar chatgpt-on-wechat:latest
scp /Users/yaoziyi/Desktop/github/chatgpt-on-wechat/chatgpt-on-wechat.tar [email protected]:/home/
ssh 139.196.89.148
cd /home
docker load -i /home/chatgpt-on-wechat.tar
# 停止并删除旧的容器
echo "Stopping and removing old container..."
docker stop chatgpt-on-wechat-container || true
docker rm chatgpt-on-wechat-container || true
# 启动新的容器
echo "Starting new container..."
docker run -d --name chatgpt-on-wechat-container -p 8081:8081 -v /var/log/chatgpt-on-wechat:/var/log chatgpt-on-wechat:latest
# 打印最新容器的日志
echo "Displaying new container logs..."
docker logs $(docker ps -lq)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yaroed/chatgpt-on-wechat.git
[email protected]:yaroed/chatgpt-on-wechat.git
yaroed
chatgpt-on-wechat
chatgpt-on-wechat
master

搜索帮助