forked from testerSunshine/12306
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fa7d11
commit c9bdc8c
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/bin/bash | ||
#author: MonsterTan | ||
#date: 2019-01-15 | ||
#this is a script that can install automatically docker software by centos7 | ||
|
||
|
||
|
||
function checkSudo (){ | ||
if [ $UID -ne 0 ];then | ||
echo -e 'it must be root!' | ||
exit 1 | ||
fi | ||
} | ||
|
||
checkSudo | ||
|
||
## something required system utils | ||
yum install -y yum-utils device-mapper-persistent-data lvm2 | ||
|
||
|
||
## add repo source info | ||
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo | ||
|
||
|
||
sudo yum mackecache fast | ||
sudo yum -y install docker-ce | ||
sudo systemctl start docker | ||
|
||
|
||
str=successed! | ||
if [ $? -eq 0 ];then | ||
echo -e "\033[32msuccessed!\033[0m" | ||
else | ||
echo -e "\033[31msomething wrong, please check!\033[0m" | ||
fi | ||
|
||
echo -e "\033[31mstart to install docker-compose\033[0m" | ||
|
||
result=`ls /usr/bin/ | grep ^pip$` | ||
if [ ${#result} -eq 0 ];then | ||
echo -e "\033[31mpip must be necessary, it should be installed firstly\033[0m" | ||
fi | ||
|
||
sudo pip install docker-compose | ||
|