Skip to content

Commit

Permalink
Update comments on environment variables in docker-compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
Cawllec committed Feb 25, 2025
1 parent e516aef commit 3241fbd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions features/fixtures/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ services:

laravelrr:
build:
context: ${LARAVEL_FIXTURE}
context: ${LARAVEL_FIXTURE} # Set to the base test fixture e.g. laravel11
dockerfile: Dockerfile-roadrunner
args:
- PHP_VERSION
Expand All @@ -180,11 +180,11 @@ services:
restart: "no"
ports:
- target: 8000
published: ${LARAVEL_FIXTURE_PORT} # must be the same as laravel11
published: ${LARAVEL_FIXTURE_PORT} # Set to the published port of the base test fixture

laravelfp:
build:
context: ${LARAVEL_FIXTURE}
context: ${LARAVEL_FIXTURE} # Set to the base test fixture e.g. laravel11
dockerfile: Dockerfile-frankenphp
args:
- PHP_VERSION
Expand All @@ -201,11 +201,11 @@ services:
restart: "no"
ports:
- target: 8000
published: ${LARAVEL_FIXTURE_PORT} # must be the same as laravel11
published: ${LARAVEL_FIXTURE_PORT} # Set to the published port of the base test fixture

laravelsw:
build:
context: ${LARAVEL_FIXTURE}
context: ${LARAVEL_FIXTURE} # Set to the base test fixture e.g. laravel11
dockerfile: Dockerfile-swoole
args:
- PHP_VERSION
Expand All @@ -222,7 +222,7 @@ services:
restart: "no"
ports:
- target: 8000
published: ${LARAVEL_FIXTURE_PORT} # must be the same as laravel11
published: ${LARAVEL_FIXTURE_PORT} # Set to the published port of the base test fixture

laravel12:
build:
Expand Down

0 comments on commit 3241fbd

Please sign in to comment.