Skip to content

Codezavod/bitbucket-pipelines-php7

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bitbucket Pipelines PHP 7.0 image

Based on Ubuntu 16.04

Packages installed

  • php7.0-fpm, php7.0-mcrypt, mongod, xdebug, php7.0-zip, php7.0-xml, php7.0-mbstring, php7.0-curl, php7.0-json, php7.0-imap, php7.0-mysql and php7.0-tokenizer
  • Composer
  • Deployer
  • Node / NPM
  • Mysql 5.7

Sample bitbucket-pipelines.yml

image: imposibrus/bitbucket-pipelines-php7:1.2.0
pipelines:
  default:
    - step:
        script:
          - service mysql start
          - mysql -h localhost -u root -proot -e "CREATE DATABASE test;"
          - composer install --no-interaction --no-progress --prefer-dist
          - npm install --no-spin
          - ./node_modules/.bin/gulp
          - ./vendor/phpunit/phpunit/phpunit -v --coverage-text --colors=never --stderr

About

Bitbucket Pipelines Docker image based on Ubuntu 16.04 with PHP/Composer/MySQL/Node/Yarn

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 92.6%
  • Shell 7.4%