laravel-scheduled-tasks-docker
laravel-scheduled-tasks-docker copied to clipboard
Latest laravel has schedule:work
With the latest laravel you can do
cron:
image: php-laravel # you laravel app image
container_name: cron
command: php artisan schedule:work
volumes:
- ./src:/var/www/html
depends_on:
- php
networks:
- laravel