mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-10 17:42:50 +00:00
21 lines
443 B
Bash
21 lines
443 B
Bash
#!/bin/bash
|
||
|
||
# 进入项目容器运行PHP脚本文件
|
||
|
||
echo "启动定时任务:php think timer start --d"
|
||
echo "启动长连接:php think workerman start --d"
|
||
echo "启动队列:php think queue:listen --queue"
|
||
|
||
# 进入容器
|
||
docker exec -it crmeb_php /bin/bash
|
||
# 进入项目
|
||
cd /var/www
|
||
# 启动 定时任务
|
||
php think timer start --d
|
||
# 启动 长连接
|
||
php think workerman start --d
|
||
# 启动 队列
|
||
php think queue:listen --queue
|
||
|
||
|