{"id":15024245,"url":"https://github.com/clockwisesoftware/docker-phpunit-alpain","last_synced_at":"2026-04-04T06:36:17.126Z","repository":{"id":140710144,"uuid":"67066664","full_name":"ClockwiseSoftware/docker-phpunit-alpain","owner":"ClockwiseSoftware","description":"Docker machine for testing with Pipelines","archived":false,"fork":false,"pushed_at":"2020-10-05T11:20:24.000Z","size":33,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-19T18:43:49.482Z","etag":null,"topics":["docker","hacktoberfest","php","php-fpm","php56","php7","php71","phpunit","pipeline","pipelines"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/clockwise/docker-phpunit-alpain/","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ClockwiseSoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-08-31T19:23:20.000Z","updated_at":"2020-10-05T11:20:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"9514ee2d-a4cd-4196-b0fd-b1d7a229cc50","html_url":"https://github.com/ClockwiseSoftware/docker-phpunit-alpain","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClockwiseSoftware%2Fdocker-phpunit-alpain","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClockwiseSoftware%2Fdocker-phpunit-alpain/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClockwiseSoftware%2Fdocker-phpunit-alpain/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClockwiseSoftware%2Fdocker-phpunit-alpain/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ClockwiseSoftware","download_url":"https://codeload.github.com/ClockwiseSoftware/docker-phpunit-alpain/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243324266,"owners_count":20273098,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","hacktoberfest","php","php-fpm","php56","php7","php71","phpunit","pipeline","pipelines"],"created_at":"2024-09-24T20:00:00.979Z","updated_at":"2025-12-28T08:00:40.306Z","avatar_url":"https://github.com/ClockwiseSoftware.png","language":"Dockerfile","readme":"[![](https://images.microbadger.com/badges/image/clockwise/docker-phpunit-alpain.svg)](https://microbadger.com/images/clockwise/docker-phpunit-alpain \"Get your own image badge on microbadger.com\")\n\n# Available tags\n\nDebian:\n[5.6-fpm](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/5.6-fpm),\n[7.0-fpm-deb](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.0-fpm-deb),\n[7.1-fpm-deb](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.1-fpm-deb)\n[7.2-fpm-deb](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.2-fpm-deb)\n[7.3-fpm-deb](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.3-fpm-deb)\n[7.4-fpm-deb](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.4-fpm-deb)\n\nAlpine Linux:\n[7.0-fpm-alpine](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.0-fpm-alpine),\n[7.1-fpm-alpine](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.1-fpm-alpine)\n[7.2-fpm-alpine](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.2-fpm-alpine)\n[7.3-fpm-alpine](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.3-fpm-alpine)\n[7.4-fpm-alpine](https://github.com/ClockwiseSoftware/docker-phpunit-alpain/tree/7.4-fpm-alpine)\n\n# Desсription\n\nPHP container with extensions \n- iconv \n- gd\n- pdo_mysql\n- pcntl \n- pdo_sqlite \n- zip \n- curl \n- bcmath \n- imagick \n- soap \n- mysqli\n- mongodb\n\nCan use master branch in \nBitbucket Pipeline for testing Laravel project with PHPUnit\n\nUsing oficcial php containers\n\nInclude composer, git, unzip and imagemagick\n\n# Example \nContainer for using php-fpm with nginx\n\n```yml\nFROM clockwise/docker-phpunit-alpain:fpm\n\nWORKDIR /var/www\n```\n\nExample of `bitbucket-pipelines.yml`:\n```yml\nimage: clockwise/docker-phpunit-alpain:master\n\npipelines:\n  default:\n    - step:\n        script: # Modify the commands below to build your repository.\n          - composer --version\n          # install composer vendor scripts\n          - composer install\n          - vendor/bin/phpunit --version\n          - touch database/database.sqlite\n          # migrate\n          - php artisan migrate --seed\n          # run tests\n          - vendor/bin/phpunit\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclockwisesoftware%2Fdocker-phpunit-alpain","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclockwisesoftware%2Fdocker-phpunit-alpain","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclockwisesoftware%2Fdocker-phpunit-alpain/lists"}