mirror of https://github.com/veops/cmdb.git
fix: 解决在麒麟系统上使用docker安装时使用celery -D启动 celery 可能出现的问题
This commit is contained in:
parent
7f49ae3dfb
commit
c1a6adc32c
|
@ -87,7 +87,7 @@ docker-compose up -d
|
|||
- 第一步: 先安装 docker 环境, 以及docker-compose
|
||||
- 第二步: 直接使用项目根目录下的install.sh 文件进行 `安装`、`启动`、`暂停`、`查状态`、`删除`、`卸载`
|
||||
```shell
|
||||
curl -so install.sh https://raw.githubusercontent.com/veops/cmdb/master/install.sh
|
||||
curl -so install.sh https://raw.githubusercontent.com/veops/cmdb/deploy_on_kylin_docker/install.sh
|
||||
sh install.sh install
|
||||
```
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ check_docker_compose() {
|
|||
|
||||
clone_repo() {
|
||||
local repo_url=$1
|
||||
git clone $repo_url || {
|
||||
git clone -b deploy_on_kylin_docker --single-branch $repo_url || {
|
||||
echo "error: failed to clone $repo_url"
|
||||
exit 1
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue