https://github.com/poldixd/docker-php
🐳 It's my personal Docker PHP Image for the CI. Everything you need to test a Laravel application is on board.
https://github.com/poldixd/docker-php
docker docker-image php
Last synced: about 2 months ago
JSON representation
🐳 It's my personal Docker PHP Image for the CI. Everything you need to test a Laravel application is on board.
- Host: GitHub
- URL: https://github.com/poldixd/docker-php
- Owner: poldixd
- License: mit
- Created: 2021-07-08T10:50:08.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-04-20T10:48:38.000Z (2 months ago)
- Last Synced: 2026-04-24T08:41:54.681Z (2 months ago)
- Topics: docker, docker-image, php
- Language: Dockerfile
- Homepage: https://hub.docker.com/repository/docker/poldixd/php/
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker PHP Image
It's my personal Docker PHP Image for the CI. Everything you need to test a Laravel application is on board. You can find the image on the docker hub: https://hub.docker.com/repository/docker/poldixd/php/general
## Build locally
### With Chromium
```bash
docker build \
--build-arg INSTALL_CHROMIUM=true \
-t poldixd/php:8.4-chromium \
-f php/8.4/Dockerfile \
.
```
### Without Chromium
```bash
docker build \
--build-arg INSTALL_CHROMIUM=false \
-t poldixd/php:8.4 \
-f php/8.4/Dockerfile \
.
```
## Use it in your .gitlab-ci.yml
```yml
test:
stage: test
image: poldixd/php:8.4
script:
- php vendor/bin/pest --coverage
```
## Contributing
Feel free to create a pull request.
## Credits
- Special thanks to [edbizarro](https://github.com/edbizarro)