Skip to content

Commit

Permalink
fix(php): php-parse version (pinpoint-apm#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeliu committed Feb 7, 2024
1 parent 618a546 commit 9f3ba08
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion testapps/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ services:
depends_on:
redis:
condition: service_healthy
dev-collector:
condition: service_started
restart: always
build:
dockerfile: testapps/php.dockerfile
Expand All @@ -81,7 +83,10 @@ services:
container_name: fastapi
depends_on:
redis:
condition: service_healthy
condition: service_healthy
dev-collector:
condition: service_started

restart: always
build:
dockerfile: testapps/fastapi.dockerfile
Expand Down
2 changes: 1 addition & 1 deletion testapps/php.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM yiisoftware/yii2-php:7.4-fpm-nginx


RUN composer create-project --prefer-dist yiisoft/yii2-app-basic /app
RUN composer require pinpoint-apm/pinpoint-php-aop:v2.1.0
RUN composer require -w pinpoint-apm/pinpoint-php-aop:v2.1.0
RUN chown -R www-data:www-data /app
# Copy index.php
COPY testapps/PHP/index.php /app/web/index.php
Expand Down

0 comments on commit 9f3ba08

Please sign in to comment.