laravel-scheduled-tasks-docker icon indicating copy to clipboard operation
laravel-scheduled-tasks-docker copied to clipboard

Latest laravel has schedule:work

Open Yurich84 opened this issue 4 years ago • 0 comments

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

Yurich84 avatar Oct 26 '20 05:10 Yurich84