Skip to content

Commit 0c9798b

Browse files
committed
fix grpc ext ver
1 parent aac1db6 commit 0c9798b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"php": "^8.0",
1212
"ext-curl": "*",
1313
"ext-json": "*",
14-
"ext-grpc": "3.*",
14+
"ext-grpc": "1.*",
1515
"ext-protobuf": "3.*",
1616
"austinb/gameq": "^3.0",
1717
"beyondcode/laravel-websockets": "^1.11",

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
# - meilisearch
2626
# - smtp
2727
php:
28-
image: emodyz/ezgames-php:0.0.1
28+
image: emodyz/ezgames-php:0.0.2
2929
restart: always
3030
ports:
3131
- '9000:9000'
@@ -39,7 +39,7 @@ services:
3939
image: postgres:13-alpine
4040
restart: always
4141
ports:
42-
- '${FORWARD_DB_PORT:-5432}:5432'
42+
- '5432:5432'
4343
environment:
4444
POSTGRES_DB: '${DB_DATABASE}'
4545
POSTGRES_USER: '${DB_USERNAME}'
@@ -54,7 +54,7 @@ services:
5454
image: redis:6-alpine
5555
restart: always
5656
ports:
57-
- '${FORWARD_REDIS_PORT:-6379}:6379'
57+
- '6379:6379'
5858
volumes:
5959
- 'ezgames_redis:/data'
6060
networks:

0 commit comments

Comments
 (0)