Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
php_version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ['7.4', '8.1', '8.2', '8.3', '8.4']
php_version: ['7.4', '8.1', '8.2', '8.3', '8.4', '8.5']
include:
- php_version: '7.4'
lsphp: 'lsphp74'
Expand All @@ -87,6 +87,8 @@ jobs:
lsphp: 'lsphp83'
- php_version: '8.4'
lsphp: 'lsphp84'
- php_version: '8.5'
lsphp: 'lsphp85'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
php_version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
7 changes: 7 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Docker images for PHP-FPM.
- PHP 8.2
- PHP 8.3
- PHP 8.4
- PHP 8.5

### Getting the images

Expand All @@ -30,6 +31,9 @@ docker image pull meghsh/php:8.3

# PHP 8.4
docker image pull meghsh/php:8.4

# PHP 8.5
docker image pull meghsh/php:8.5
```

### Using the images
Expand All @@ -51,6 +55,9 @@ docker run --rm meghsh/php:8.3 bash -c "php -v"

# PHP 8.4
docker run --rm meghsh/php:8.4 bash -c "php -v"

# PHP 8.5
docker run --rm meghsh/php:8.5 bash -c "php -v"
```

With docker-compose:
Expand Down
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ docker build --platform linux/amd64,linux/arm64 --build-arg PHP_VERSION=8.1 -t m
docker build --platform linux/amd64,linux/arm64 --build-arg PHP_VERSION=8.2 -t meghsh/php:8.2 -f php/Dockerfile php --push
docker build --platform linux/amd64,linux/arm64 --build-arg PHP_VERSION=8.3 -t meghsh/php:8.3 -f php/Dockerfile php --push
docker build --platform linux/amd64,linux/arm64 --build-arg PHP_VERSION=8.4 -t meghsh/php:8.4 -f php/Dockerfile php --push
docker build --platform linux/amd64,linux/arm64 --build-arg PHP_VERSION=8.5 -t meghsh/php:8.5 -f php/Dockerfile php --push