Skip to content

Commit

Permalink
ci: replace docker-compose with docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
justlevine committed Aug 2, 2024
1 parent 44eec27 commit 1bfd3e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## [Unreleased]

- fix: Check if classes are loaded by a different autoloader before attempting to autoload them. H/t @cvanh
- ci: Replace calls to `docker-compose` with `docker compose`.


## v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion bin/run-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ case "$subcommand" in
export APACHE_RUN_GROUP=$(id -g)
echo "APACHE RUN USER ${APACHE_RUN_USER} ${APACHE_RUN_GROUP}"

docker-compose run --rm \
docker compose run --rm \
-e COVERAGE=${COVERAGE-} \
-e USING_XDEBUG=${USING_XDEBUG-} \
-e DEBUG=${DEBUG-} \
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"install-stan-env": "bash bin/install-stan-env.sh",
"docker-build": "bash bin/run-docker.sh build",
"docker-run": "bash bin/run-docker.sh run",
"docker-destroy": "docker-compose down",
"docker-destroy": "docker compose down",
"build-and-run": [
"@docker-build",
"@docker-run"
Expand Down

0 comments on commit 1bfd3e0

Please sign in to comment.