We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d051800 commit 34e3d4aCopy full SHA for 34e3d4a
.github/workflows/tests.yml
@@ -6,6 +6,12 @@ jobs:
6
runs-on: ubuntu-latest
7
steps:
8
- uses: actions/checkout@v4
9
+ - name: Build Docker Image
10
+ run: |
11
+ docker buildx build -f src/docker/Dockerfile --build-arg phpVersion=8.4 -t ${{ vars.BUILDKIT_IMAGE }}:latest --load .
12
+ - name: Verify Docker images
13
14
+ docker images
15
- name: Create Laravel project
16
run: |
17
composer create-project laravel/laravel laravel
tests/compose.yaml
@@ -12,7 +12,7 @@ services:
ports:
- 3306:3306
php-fpm:
- image: jkaninda/laravel-php-fpm
+ image: jkaninda/laravel-php-fpm:latest
container_name: php-fpm
restart: unless-stopped
18
#user: www-data #Use www-data user production usage
0 commit comments