mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 13:14:52 +08:00
13 lines
337 B
Bash
Executable File
13 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cq=$(screen -list | grep "cq")
|
|
if [[ "$cq" = "" ]]; then
|
|
screen -dmS cq
|
|
fi
|
|
sleep 1s
|
|
|
|
screen -x -S cq -p 0 -X stuff "sudo docker run -it --rm --name cqbot -v "$(pwd)"/cqbot/:/root/ jesse2061/cqbot-swoole"
|
|
screen -x -S cq -p 0 -X stuff "\n"
|
|
screen -x -S cq -p 0 -X stuff "php start.php"
|
|
screen -x -S cq -p 0 -X stuff "\n"
|