Skip to content

xaamin/artisan-queue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Artisan Queue Listener

Docker container to run Artisan Queue Listener

Base docker image

Installation

Manual build

  • Build an image from Dockerfile docker build -t xaamin/artisan-queue https://github.com/xaamin/artisan-queue.git

Volumes

You must provide a volume mounted on /app containing Laravel project

Usage

You can specify maximum attemps using env TRIES variable, default is 3. To specify the queue name use env QUEUE variable.

Run the default queue listener

	docker run -d --restart always -v /path/to/laravel/project:/app xaamin/artisan-queue

Run custom queue listener specifying maximum attemps and queue name through env vars

	docker run -d --restart always -e QUEUE=mailer -e TRIES=5 -v /path/to/laravel/project:/app xaamin/artisan-queue

About

Laravel artisan queue listener

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages