1 Star 0 Fork 0

ai李超/ITStudy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.sh 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
LiChao 提交于 2021-11-29 18:30 . HW8v2
if ! [ -x "$(command -v git)" ]; then
echo 'git is not installed.' >&2
yum install git -y
else
echo 'git is installed.'
fi
if ! [ -x "$(command -v docker)" ]; then
echo 'docker is not installed.' >&2
exit 1
else
echo 'docker is installed.'
fi
if ! [ -x "$(command -v docker-compose)" ]; then
echo 'docker-compose is not installed.' >&2
curl -L https://get.daocloud.io/docker/compose/releases/download/1.29.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose&&chmod +x /usr/local/bin/docker-compose
else
echo 'docker-compose is installed.'
fi
git clone https://gitee.com/lc1997622/itstudy.git;cd ./itstudy/docker-compose/;make run;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lc1997622/itstudy.git
git@gitee.com:lc1997622/itstudy.git
lc1997622
itstudy
ITStudy
main

搜索帮助