加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-restart.sh 414 Bytes
一键复制 编辑 原始数据 按行查看 历史
88250 提交于 2019-03-28 12:04 . :whale:#221
#!/bin/bash
#
# Pipe docker 更新重启脚本
#
# 1. 请注意修改参数
# 2. 可将该脚本加入 crontab,每日凌晨运行来实现自动更新
#
docker pull b3log/pipe
docker stop pipe
docker rm pipe
docker run --detach --name pipe --network=host \
b3log/pipe --mysql="root:123456@(127.0.0.1:3306)/pipe?charset=utf8mb4&parseTime=True&loc=Local" --runtime_mode=prod --server=http://localhost:5897
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化