Browse Source

Enable apache rewrite mod

Pierre Jaury 7 years ago
parent
commit
be13d1aa98
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Dockerfile.apache

+ 1 - 0
Dockerfile.apache

@@ -8,6 +8,7 @@ RUN apt-get update \
  && docker-php-ext-install pdo_mysql pcntl \
  && pecl install imagick \
  && docker-php-ext-enable imagick pcntl imagick \
+ && a2enmod rewrite \
  && curl -LsS https://getcomposer.org/download/${COMPOSER_VERSION}/composer.phar -o /tmp/composer.phar \
  && echo "${COMPOSER_CHECKSUM}  /tmp/composer.phar" | sha256sum -c - \
  && install -m0755 -o root -g root /tmp/composer.phar /usr/bin/composer.phar \