9 Star 35 Fork 31

weixiaojin/alinesno-cloud-service-community

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install-platform-min.sh 801 Bytes
一键复制 编辑 原始数据 按行查看 历史
Easton 提交于 2020-02-02 09:44 . 初始化版本。
#!/bin/bash
#--------------------------------------------------
# This script is for: 安装基础环境
#--------------------------------------------------
set -o nounset
set -o errexit
#set -o xtrace
# 清掉文件
if [ -d "config" ];then
rm config
fi
if [ -d "my.cnf" ];then
rm my.cnf
fi
if [ -d "90-dev-compose-platform-min.yaml" ];then
rm 90-dev-compose-platform-min.yaml
fi
# 下载文件
PLATFORM_MIN_URL=http://training-static.linesno.com/90-dev-compose-platform-min.yaml
MYSQL_CONF_URL=http://training-static.linesno.com/mysql.cnf
curl -C- -O --retry 3 "$PLATFORM_MIN_URL"
curl -C- -O --retry 3 "$MYSQL_CONF_URL"
mkdir config
cp -af mysql.cnf ./config/
yum install docker
yum install docker-compose
systemctl restart docker
docker-compose -f 90-dev-compose-platform-min.yaml up -d
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/WENDY-W/alinesno-cloud-service-community.git
git@gitee.com:WENDY-W/alinesno-cloud-service-community.git
WENDY-W
alinesno-cloud-service-community
alinesno-cloud-service-community
2.1.0-Alpha

搜索帮助