| 1234567891011121314151617181920 |
- #!/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
|