添加Docker相关文件

This commit is contained in:
kerwincui
2022-03-20 12:59:33 +08:00
parent 6c7b3549ce
commit d05dd8fc62
7 changed files with 171 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
#!/bin/bash
# start service
startTime=$(date "+%Y-%m-%d %H:%M:%S")
echo $startTime : wumei-smart is starting...
service nginx start
service redis-server start
emqx start
#service mysql start
#java -jar /var/wumei-smart/java/app.jar
while true
do
time=$(date "+%Y-%m-%d %H:%M:%S")
echo $time : wumei-smart is running...
sleep 3600
done