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: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: 2
updates:
- package-ecosystem: "docker"
directory: "/8.0"
directory: "/8.1"
schedule:
interval: "daily"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]

- package-ecosystem: "docker"
directory: "/8.1"
directory: "/8.2"
schedule:
interval: "daily"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]

- package-ecosystem: "docker"
directory: "/8.2"
directory: "/8.3"
schedule:
interval: "daily"
ignore:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
matrix:
include:
- tag: 'latest'
php: '8.2'
php: '8.3'
- tag: 'stable'
php: '8.2'
php: '8.3'
- tag: '8.3'
php: '8.3'
- tag: '8.2'
php: '8.2'
- tag: '8.1'
php: '8.1'
- tag: '8.0'
php: '8.0'

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion 8.0/Dockerfile → 8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0.13-alpine3.13
FROM php:8.3-alpine3.17

# Add docker-php-extension-installer script
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
[![Docker Badge](https://img.shields.io/docker/pulls/lorisleiva/laravel-docker)](https://hub.docker.com/r/lorisleiva/laravel-docker/)


| Tags | PHP version | Features |
| - | - | - |
| 8.0 | 8.0 | ✅ Everything. |
| 8.1 | 8.1 | ✅ Everything. |
| 8.2 | 8.2 | ✅ Everything. |
| stable | **8.2** | 🔗 Aliases the latest stable version of PHP that supports all features of this docker image. |
| latest | **8.2** | 🔗 Aliases the latest stable version of PHP available (even if that version does not support all features yet). |
| Tags | PHP version | Features |
|--------|-------------| - |
| 8.1 | 8.1 | ✅ Everything. |
| 8.2 | 8.2 | ✅ Everything. |
| 8.3 | 8.3 | ✅ Everything. |
| stable | **8.3** | 🔗 Aliases the latest stable version of PHP that supports all features of this docker image. |
| latest | **8.3** | 🔗 Aliases the latest stable version of PHP available (even if that version does not support all features yet). |

#### Use within your GitLab's pipelines.
* [Run test suite and check codestyle](http://lorisleiva.com/using-gitlabs-pipeline-with-laravel/)
Expand Down