Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
luisdalmolin committed Mar 6, 2022
1 parent 7bcfd88 commit d2fe834
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@ This is a [docker container](https://cloud.docker.com/u/kirschbaumdevelopment/re

You may want to check [this blog post](https://kirschbaumdevelopment.com/news-articles/using-github-actions-to-setup-ci-cd-with-laravel-and-mysql) on how to use this container to run your Laravel tests with Github Actions.

## Custom extensions

In case you need any custom extensions, the container is running Ubuntu, so you can simply install them:

```bash
apt-get install -y php8.1-bz2
```

Example on Github actions:

```yaml
- name: Install additional PHP extensions
run: apt-get install -y php8.1-bz2 php8.1-soap
```
## Issues
If you have any issues running your tests with this container, please open an issue or send a pull request.
Expand Down

0 comments on commit d2fe834

Please sign in to comment.