Skip to content

Commit 202f407

Browse files
committed
v3.2.0
1 parent ef8db2f commit 202f407

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"require": {
88
"php": ">=7.2",
99
"ext-json": "*",
10-
"php-service-bus/service-bus": "^v3.1",
11-
"php-service-bus/module-phpinnacle-transport": "^v3.0"
10+
"php-service-bus/service-bus": "^v3.2",
11+
"php-service-bus/module-phpinnacle-transport": "^v3.2"
1212
},
1313
"require-dev": {
1414
"php-service-bus/code-style-config": "^v0.1",

docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
queue:
66
build:
77
context: docker/rabbitmq
8-
container_name: service-bus-queue
8+
container_name: service-bus-skeletone-queue
99
restart: always
1010
ports:
1111
- 5672:5672
@@ -18,7 +18,7 @@ services:
1818

1919
db:
2020
image: postgres:9.6
21-
container_name: service-bus-db
21+
container_name: service-bus-skeletone-db
2222
restart: always
2323
environment:
2424
POSTGRES_PASSWORD: 123456789
@@ -29,7 +29,7 @@ services:
2929
app:
3030
build:
3131
context: docker/application
32-
container_name: service-bus-consumer
32+
container_name: service-bus-skeletone-consumer
3333
working_dir: /var/www
3434
restart: always
3535
volumes:

docker/application/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ RUN set -xe \
3131
ENV LD_PRELOAD /usr/lib/preloadable_libiconv.so phpalpine
3232

3333
# https://github.com/phpinnacle/ext-buffer
34-
RUN git clone https://github.com/phpinnacle/ext-buffer.git \
34+
RUN echo "f80bbb8ea85346bf6082727fdf58857c59649da2" \
35+
&& git clone https://github.com/phpinnacle/ext-buffer.git \
3536
&& cd ext-buffer \
3637
&& phpize \
3738
&& ./configure \

0 commit comments

Comments
 (0)