Skip to content

Commit 8def0d7

Browse files
author
rok
committed
adding amqp
1 parent 288ccf9 commit 8def0d7

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM php:7.3-alpine
22

33
LABEL maintainer="ipunkt Business Solutions <[email protected]>" \
4-
version.image="v4.2" \
4+
version.image="v4.3" \
55
version.php=$PHP_VERSION \
66
description="A supervisor configured to run with laravel artisan queue:work or artisan horizon command"
77

@@ -11,6 +11,7 @@ ENV LARAVEL_HORIZON=false
1111

1212
# Install pdo if you want to use database queue and install supervisor
1313
RUN docker-php-ext-install bcmath pdo pdo_mysql pcntl posix \
14+
&& pecl install amqp && docker-php-ext-enable amqp \
1415
&& apk add --update supervisor && rm -rf /tmp/* /var/cache/apk/*
1516

1617
# Define working directory

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,16 @@ For Laravel Horizon you have to configure your memory limit in your `horizon.php
2424
| 7.2 | ipunktbs/laravel-queue-worker:php7.2-v3.0 |
2525
| 7.3 | ipunktbs/laravel-queue-worker:php7.3-v4.0 - deprecated |
2626
| 7.3 | ipunktbs/laravel-queue-worker:php7.3-v4.1 |
27-
| 7.3 | ipunktbs/laravel-queue-worker:php7.3-v4.2 - recommended |
27+
| 7.3 | ipunktbs/laravel-queue-worker:php7.3-v4.2 |
28+
| 7.3 | ipunktbs/laravel-queue-worker:php7.3-v4.3 - recommended |
2829

2930
### Changelog
3031

32+
#### v4.3
33+
34+
Added:
35+
- amqp extension
36+
3137
#### v4.2
3238

3339
Added:

0 commit comments

Comments
 (0)