Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
supporting laravel queue worker with php 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Kummer committed Jan 25, 2018
1 parent 3faaa0c commit 378334f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class LaravelQueueWorker extends Service
private $__validImageVersions = [
'php7.0-v1.0',
'php7.1-v2.0',
'php7.2-v3.0',
'latest',
];

Expand Down
2 changes: 1 addition & 1 deletion app/Blueprint/Webserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This blueprint creates infrastructures to support apps using php7.
|`php.upload-file-limit`| `2M` | PHP post_max_size option |
|`php.default-timezone`| `UTC` | PHP date.timezone option |
|`queues`| [] | Add Laravel Queue Worker, providing their name and connection in `name` and `connection`. Example: `"queues":[{"connection": "redis","name": "default"}],` |
|`queue-image-version`| `php7.0-v1.0` | Which docker image version do you need: (default: `php7.0-v1.0`, or `php7.1-v2.0`, `latest` are [valid](https://hub.docker.com/r/ipunktbs/laravel-queue-worker/tags/) right now) |
|`queue-image-version`| `php7.0-v1.0` | Which docker image version do you need: (default: `php7.0-v1.0`; also `php7.1-v2.0`, `php7.2-v3.0` and `latest` are [valid](https://hub.docker.com/r/ipunktbs/laravel-queue-worker/tags/) right now) |
|`add-redis`| false | Add a Redis server and link it to the main app, providing its name and port in `REDIS_HOST` and `REDIS_PORT` |

#### Services for local development
Expand Down

0 comments on commit 378334f

Please sign in to comment.