-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
464 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build Docker images for PHP 8.1 | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- .github/workflows/build-8.1.yml | ||
- build/** | ||
- php8.1/** | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-docker-php80: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
# PHP 8.1 | ||
- name: Build and push - frxyt/php-dev:8.1-apache | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.1/Dockerfile-apache | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.1 | ||
frxyt/php-dev:8.1-apache | ||
frxyt/php-dev:8.1-apache-bullseye | ||
- name: Build and push - frxyt/php-dev:8.1-cli | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.1/Dockerfile-cli | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.1-cli | ||
frxyt/php-dev:8.1-cli-bullseye | ||
- name: Build and push - frxyt/php-dev:8.1-fpm | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.1/Dockerfile-fpm | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.1-fpm | ||
frxyt/php-dev:8.1-fpm-bullseye |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build Docker images for PHP 8.2 | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- .github/workflows/build-8.2.yml | ||
- build/** | ||
- php8.2/** | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-docker-php80: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
# PHP 8.2 | ||
- name: Build and push - frxyt/php-dev:8.2-apache | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.2/Dockerfile-apache | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.2 | ||
frxyt/php-dev:8.2-apache | ||
frxyt/php-dev:8.2-apache-bullseye | ||
- name: Build and push - frxyt/php-dev:8.2-cli | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.2/Dockerfile-cli | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.2-cli | ||
frxyt/php-dev:8.2-cli-bullseye | ||
- name: Build and push - frxyt/php-dev:8.2-fpm | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.2/Dockerfile-fpm | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.2-fpm | ||
frxyt/php-dev:8.2-fpm-bullseye |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build Docker images for PHP 8.3 | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- .github/workflows/build-8.3.yml | ||
- build/** | ||
- php8.3/** | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-docker-php80: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
# PHP 8.3 | ||
- name: Build and push - frxyt/php-dev:8.3-apache | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.3/Dockerfile-apache | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.3 | ||
frxyt/php-dev:8.3-apache | ||
frxyt/php-dev:8.3-apache-bullseye | ||
- name: Build and push - frxyt/php-dev:8.3-cli | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.3/Dockerfile-cli | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.3-cli | ||
frxyt/php-dev:8.3-cli-bullseye | ||
- name: Build and push - frxyt/php-dev:8.3-fpm | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./php8.3/Dockerfile-fpm | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: | | ||
frxyt/php-dev:8.3-fpm | ||
frxyt/php-dev:8.3-fpm-bullseye |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.3-apache-buster | ||
FROM php:7.3-apache-bullseye | ||
|
||
LABEL maintainer="Jérémy WALTHER <jeremy@ferox.yt>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.3-cli-buster | ||
FROM php:7.3-cli-bullseye | ||
|
||
LABEL maintainer="Jérémy WALTHER <jeremy@ferox.yt>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.3-fpm-buster | ||
FROM php:7.3-fpm-bullseye | ||
|
||
LABEL maintainer="Jérémy WALTHER <jeremy@ferox.yt>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.4-apache-buster | ||
FROM php:7.4-apache-bullseye | ||
|
||
LABEL maintainer="Jérémy WALTHER <jeremy@ferox.yt>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.4-cli-buster | ||
FROM php:7.4-cli-bullseye | ||
|
||
LABEL maintainer="Jérémy WALTHER <jeremy@ferox.yt>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.4-fpm-buster | ||
FROM php:7.4-fpm-bullseye | ||
|
||
LABEL maintainer="Jérémy WALTHER <jeremy@ferox.yt>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.