上一篇我们写了如何用 Docker 部署 Laravel 应用,然后这一篇我们写一下如何部署含有队列以及任务调度的 Laravel 应用。
一、 我们首先准备一下我们的 docker/app.cron 文件
注意一下,文件最后的空行是必须的。
1
2
3
|
#!/usr/bin/env bash
PATH= /usr/local/sbin : /usr/local/bin : /usr/sbin : /usr/bin : /sbin : /bin
* * * * * cd /var/www/html && php artisan schedule:run >> /dev/null 2>&1
|
二、新建一个入口文件:docker-entrypoint-queue.sh
注意一下,此文件需要执行权限。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env bash
php artisan cache: clear
php artisan config:cache
php artisan route:cache
php artisan view:cache
# 加载调度任务并重启 cron
crontab docker /app . cron
/etc/init .d /cron restart
# 执行队列
php artisan queue:work --timeout=60
|
三、这一次我们使用 docker compose 运行程序:./docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
version: "3.4"
services:
api:
build: .
image: moorper/example-laravel
networks:
- frontend
- backend
environment:
- APP_ENV=development
ports:
- "80:80"
entrypoint: ./docker-entrypoint.sh
queue:
build: .
image: moorper/example-laravel
networks:
- backend
environment:
- APP_ENV=development
entrypoint: ./docker-script-entrypoint.sh
networks:
frontend:
backend:
|
四、运行
1
|
docker-compose up -d
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://segmentfault.com/a/1190000020258029