Skip to content
Snippets Groups Projects
Commit 35cb7773 authored by Alex's avatar Alex
Browse files

New attempt to use redis as queue driver

parent cd7bff1e
No related branches found
No related tags found
1 merge request!1Include Wowa Training
Pipeline #5588 passed
......@@ -26,6 +26,9 @@ FROM php:7.4-apache
# modules with
# docker run -it --rm php:7.4-apache php -m
# RUN docker-php-ext-install mbstring
RUN pecl install -o -f redis \
&& rm -rf /tmp/pear \
&& docker-php-ext-enable redis
### Apache
......
......@@ -16,9 +16,9 @@ DB_CONNECTION=sqlite
#DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=database
SESSION_DRIVER=file
CACHE_DRIVER=redis
QUEUE_CONNECTION=redis
SESSION_DRIVER=redis
SESSION_LIFETIME=120
REDIS_HOST=127.0.0.1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment