Skip to content

Commit

Permalink
feat: update to php:8.3.1-bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisaha committed Jan 3, 2024
1 parent 6cca479 commit 444eb84
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
tmpName="image-$RANDOM"
docker build $folder --file $folder/Dockerfile --tag $tmpName --build-arg PHP_VERSION=$PHP_VERSION
IMAGE_ID=${{ secrets.DOCKER_REGISTRY_URL }}/${{ secrets.IMAGE_NAME }}
IMAGE_ID=${{ secrets.DOCKER_REGISTRY_URL }}/${{ secrets.DOCKER_USERNAME }}/${{ secrets.IMAGE_NAME }}
docker tag $tmpName $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# php-8-debain
Docker image with php:8.3.x-bullseye
# php-8-debian
Docker image with php:8.3.x-bookworm

All image contain following php extension and [composer](https://github.com/composer/composer).

Expand Down Expand Up @@ -28,20 +28,20 @@ All image contain following php extension and [composer](https://github.com/comp
- xdebug(Only in cli and dev variant)

## Image Variants
### php-8-debain:cli or php-8-debain:cli-{php-version}
### php-8-debian:cli or php-8-debian:cli-{php-version}
This use the cli base image with xdebug enabled, also contain nodejs-20.x and npm

### php-8-debain:fpm or php-8-debain:fpm-{php-version}
### php-8-debian:fpm or php-8-debian:fpm-{php-version}
This use the fpm base image

### php-8-debain:apache or php-8-debain:apache-{php-version}
### php-8-debian:apache or php-8-debian:apache-{php-version}
This use the apache base image

### php-8-debain:dev or php-8-debain:dev-{php-version}
### php-8-debian:dev or php-8-debian:dev-{php-version}
This use the apache base image with xdebug enabled

### php-8-debain:oci or php-8-debain:oci-{php-version}
### php-8-debian:oci or php-8-debian:oci-{php-version}
This use the fpm base image with oci8 extension enabled.

### php-8-debain:supervisor or php-8-debain:supervisor-{php-version}
### php-8-debian:supervisor or php-8-debian:supervisor-{php-version}
This use the cli base image and set supervisor as entry point. Mount any supervisor config file as /etc/supervisor/conf.d/*.conf
2 changes: 1 addition & 1 deletion apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION=8.3.1
FROM php:${PHP_VERSION}-apache-bullseye
FROM php:${PHP_VERSION}-apache-bookworm

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION=8.3.1
FROM php:${PHP_VERSION}-cli-bullseye
FROM php:${PHP_VERSION}-cli-bookworm

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION=8.3.1
FROM php:${PHP_VERSION}-apache-bullseye
FROM php:${PHP_VERSION}-apache-bookworm

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION=8.3.1
FROM php:${PHP_VERSION}-fpm-bullseye
FROM php:${PHP_VERSION}-fpm-bookworm

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion oci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION=8.3.1
FROM php:${PHP_VERSION}-fpm-bullseye
FROM php:${PHP_VERSION}-fpm-bookworm

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion supervisor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION=8.3.1
FROM php:${PHP_VERSION}-cli-bullseye
FROM php:${PHP_VERSION}-cli-bookworm

LABEL org.opencontainers.image.authors="Roni Kumar Saha <[email protected]>"

Expand Down

0 comments on commit 444eb84

Please sign in to comment.