Advertisement
Guest User

Untitled

a guest
Jul 27th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.73 KB | None | 0 0
  1. diff --git a/.config/configstore/update-notifier-npm.json b/.config/configstore/update-notifier-npm.json
  2. index f9c84ba17..24bcf03b5 100644
  3. --- a/.config/configstore/update-notifier-npm.json
  4. +++ b/.config/configstore/update-notifier-npm.json
  5. @@ -1,4 +1,4 @@
  6.  {
  7.     "optOut": false,
  8. -   "lastUpdateCheck": 1528372840272
  9. +   "lastUpdateCheck": 1532594949048
  10.  }
  11. \ No newline at end of file
  12. diff --git a/Dockerfile.tests b/Dockerfile.tests
  13. index 7ead903be..1c8c04b2f 100644
  14. --- a/Dockerfile.tests
  15. +++ b/Dockerfile.tests
  16. @@ -45,9 +45,10 @@ RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php && \
  17.      apt-get -y install nodejs && \
  18.      npm install -g bower
  19.  
  20. -RUN pecl channel-update pecl.php.net && yes '' | pecl install -f apcu
  21. -RUN sh -c "echo 'extension=apcu.so' >> /etc/php/7.1/cli/php.ini"
  22. -RUN sh -c "echo 'apc.enable_cli=true' >> /etc/php/7.1/mods-available/apcu.ini"
  23. +RUN pecl config-set php_ini /etc/php/7.1/cli/php.ini && \
  24. +    pecl channel-update pecl.php.net && yes '' | pecl install -f apcu
  25. +RUN echo 'extension=apcu.so' >> /etc/php/7.1/cli/php.ini"
  26. +RUN echo 'apc.enable_cli=true' >> /etc/php/7.1/mods-available/apcu.ini"
  27.  
  28.  # Configure php
  29.  # COPY docker/php.ini /etc/php/7.1/cli/php.ini
  30. diff --git a/docker/parameters.yml b/docker/parameters.yml
  31. index 8e39a6aaa..e38027a1e 100644
  32. --- a/docker/parameters.yml
  33. +++ b/docker/parameters.yml
  34. @@ -1,9 +1,10 @@
  35. +# This file is auto-generated during the composer install
  36.  parameters:
  37.      database_host: db
  38. -    database_port: null
  39. +    database_port: 3306
  40.      database_name: hearingoms
  41. -    database_password: hearingoms
  42.      database_user: root
  43. +    database_password: hearingoms
  44.      mailer_transport: gmail
  45.      mailer_host: smtp.gmail.com
  46.      mailer_user: xxxxxxxxxxxx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement