phpunit container
1.2K
A series of docker files with different things for working with Composer, PHPUnit, XDebug (where available), Sqlite3, and MySQL to make CI/CD a little easier.
Intended for usage in a CI environment (Travis, Gitlab, Drone, etc.):
The docker hub page can be found here: epcallan/php7-testing-phpunit
7.2-phpunit7: PHP7.2, PHPUnit 7.x, XDebug7.2-phpunit6: PHP7.2, PHPUnit 6.x, XDebug7.2-phpunit5: PHP7.2, PHPUnit 5.x, XDebug7.1-phpunit7: PHP7.1, PHPUnit 7.x, XDebug7.1-phpunit6: PHP7.1, PHPUnit 6.x, XDebug7.1-phpunit5: PHP7.1, PHPUnit 5.x, XDebug7.0-phpunit6: PHP7.0, PHPUnit 6.x, XDebug7.0-phpunit5: PHP7.0, PHPUnit 5.x, XDebugdocker pull epcallan/php7-testing-phpunit:7.1-phpunit5
build:
image: epcallan/php7-testing-phpunit:7.1-phpunit5
commands:
- composer install
- phpunit
image: epcallan/php7-testing-phpunit:7.1-phpunit5
before_script:
- composer install
in_docker:
stage: test
script:
- phpunit
only:
- master
If you want to add Postgres or ODBC or another PHP extension to the mix, simply clone this repository and add the additions into any of the Dockerfile's and then build them (for example: docker build php7.1-phpunit6).
If you'd like to see this enable a basic extension, feel free to submit an issue.
MIT Licensed. For complete license, see LICENSE
Content type
Image
Digest
Size
173.3 MB
Last updated
almost 6 years ago
docker pull ccctechcenter/docker-phpunit-php7