Error after composer install #432
Answered
by
jaydrogers
manusiakemos
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
jaydrogers
Sep 24, 2024
Replies: 1 comment
-
If you run the command I would advise using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jaydrogers
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you run the command
composer install --no-interaction
, you're telling the container to runcomposer install
which will execute and exit with a status of0 (success)
.I would advise using
docker compose run php composer install
where you're passing a command to be run instead of running it through composer itself