You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 13, 2019. It is now read-only.
I've been experimenting with this layer to see if it would be usable in place of a local composer install, as well as as a container within a docker-compose specification. One thing I'm running into is that execution of it appears to imply the --no-interaction flag.
This project includes a couple of composer plugins, zend-component-installer and zend-skeleton-installer, which each normally have prompts to allow the developer to provide information (in the former case, to potentially add application configuration; in the latter, to modify dependencies). In both cases, as well, running without interaction triggers default actions (usually: do nothing), or, detects that work has already been done and do nothing.
When run with this docker layer, however, I can see the plugins being triggered, but am never given the expected prompts.
I've run composer within layers previously (we include it with the default Dockerfile in the ZF skeleton application, for instance), and it runs normally, prompting as expected.
I've combed through this repo, and cannot see that the flag is being passed; is there perhaps some other configuration file I'm missing?
tl;dr: I'd like to run composer with interaction.
The text was updated successfully, but these errors were encountered:
I've been experimenting with this layer to see if it would be usable in place of a local composer install, as well as as a container within a docker-compose specification. One thing I'm running into is that execution of it appears to imply the
--no-interaction
flag.As an example, try the following:
$ docker run --rm -u $UID -v `pwd`:/app composer/composer create-project zendframework/skeleton-application zf3-via-docker
This project includes a couple of composer plugins, zend-component-installer and zend-skeleton-installer, which each normally have prompts to allow the developer to provide information (in the former case, to potentially add application configuration; in the latter, to modify dependencies). In both cases, as well, running without interaction triggers default actions (usually: do nothing), or, detects that work has already been done and do nothing.
When run with this docker layer, however, I can see the plugins being triggered, but am never given the expected prompts.
I've run composer within layers previously (we include it with the default
Dockerfile
in the ZF skeleton application, for instance), and it runs normally, prompting as expected.I've combed through this repo, and cannot see that the flag is being passed; is there perhaps some other configuration file I'm missing?
tl;dr: I'd like to run composer with interaction.
The text was updated successfully, but these errors were encountered: