Guest User

Untitled

a guest
Mar 15th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. version: 2
  2. jobs:
  3. build:
  4. working_directory: ~/symfony
  5. docker:
  6. - image: circleci/php:7.2-fpm-node-browsers
  7. - image: circleci/mysql:5.7-ram
  8. # MYSQL_ALLOW_EMPTY_PASSWORD=true
  9. # MYSQL_DATABASE=circle_test
  10. # MYSQL_HOST=127.0.0.1
  11. # MYSQL_ROOT_HOST=%
  12. # MYSQL_USER=root
  13. steps:
  14. - checkout
  15. - run:
  16. name: Disable xdebug
  17. command: |
  18. sudo sed -i 's/^zend_extension/;zend_extension/g' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
  19. # your steps below
Add Comment
Please, Sign In to add comment