In the previous article, we wrote about how to deploy Laravel applications with Docker. In this article, we will write about how to deploy Laravel applications with queues and task scheduling. 1. Let's first prepare our docker/app.cron file Note that the blank line at the end of the file is required. #!/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 2. Create a new entry file: docker-entrypoint-queue.sh Note that this file requires execute permissions. #!/usr/bin/env bash php artisan cache:clear php artisan config:cache php artisan route:cache php artisan view:cache # Load the scheduled task and restart cron crontab docker/app.cron /etc/init.d/cron restart # Execute queue php artisan queue:work --timeout=60 3. This time we use docker compose to run the program: ./docker-compose.yml 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: 4. Operation docker-compose up -d The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySQL 5.7.20 installation and configuration method graphic tutorial (win10)
>>: Vue recursively implements three-level menu
Business scenario: Use vue + element ui's el-...
When multiple images are introduced into a page, ...
After the release of CentOS8.0-1905, we tried to ...
1. Download Navicat for MySQL 15 https://www.navi...
question I encountered a problem when writing dat...
Achieve resultsImplementation Code html <div&g...
Table of contents 1. Installation 2. Use Echarts ...
Preface I believe many students are already famil...
Proxying multiple 302s with proxy_intercept_error...
Recently, I need to do a small verification exper...
Look at the code: Copy code The code is as follows...
This article shares the specific code of Javascri...
The following error occurs when entering Chinese ...
Preface: During the project development, we encou...
Preface In our daily development process, sorting...