You may run into PHP dependencies errors after updating Composer files with Docker images. In the Laravel docker-compose.yml file update the build/context runtime line to the required PHP version. Example For clarity of the image file name update the build/image line to reflect the new version. Example After updating the above run the command to […]
Tag: laravel
Beanstalkd and Multiple Laravel Websites
If you have multiple websites on the same server using Beanstalkd for queues you can set unique queue tubes for each site to prevent jobs on the queue being triggered by the other sites. In Laravel, edit the queue config file and change default to something unique like the website name. ‘beanstalkd’ => [ ‘driver’ […]