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
while trying ot use this repo I experienced the following error when composer is called:
Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 4096 bytes) in phar:///usr/local/bin/composer/src/Composer/DependencyResolver/RuleWatchGraph.php on line 52
In order to fix this I slightly changed the Dockerfile including the following commented line:
# install Drupal Commerce 2.x https://docs.drupalcommerce.org/commerce2/developer-guide/install-update/installation
RUN cd /var \
&& rm -rf /var/www \
&& export COMPOSER_MEMORY_LIMIT=-1 \ ## this is added line
&& composer create-project drupalcommerce/project-base www --stability dev \
&& ln -s /var/www/web /var/www/html \
&& chown -R www-data:www-data /var/www/web
Happening on a Debian Stable VM.
The text was updated successfully, but these errors were encountered:
Hello,
while trying ot use this repo I experienced the following error when composer is called:
Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 4096 bytes) in phar:///usr/local/bin/composer/src/Composer/DependencyResolver/RuleWatchGraph.php on line 52
In order to fix this I slightly changed the Dockerfile including the following commented line:
Happening on a Debian Stable VM.
The text was updated successfully, but these errors were encountered: