Browse Source

Enbale apcu in devcontainer CLI

pull/37521/head
Robin Windey 3 years ago
committed by GitHub
parent
commit
296c9beff6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .devcontainer/Dockerfile

3
.devcontainer/Dockerfile

@ -43,7 +43,8 @@ RUN curl -sS https://getcomposer.org/installer -o /tmp/composer-setup.php && \
rm /tmp/composer-setup.php /tmp/composer-setup.sig
RUN echo "xdebug.remote_enable = 1" >> /etc/php/8.1/cli/conf.d/20-xdebug.ini && \
echo "xdebug.remote_autostart = 1" >> /etc/php/8.1/cli/conf.d/20-xdebug.ini
echo "xdebug.remote_autostart = 1" >> /etc/php/8.1/cli/conf.d/20-xdebug.ini && \
echo "apc.enable_cli=1" >> /etc/php/8.1/cli/conf.d/20-apcu.ini
# Autostart XDebug for apache
RUN { \

Loading…
Cancel
Save