Skip to content

Commit

Permalink
feat: release for 8.3.8 again
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisaha committed Jul 1, 2024
1 parent c85c429 commit fb59382
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image-variant: [ 'oci', 'supervisor-oci' ]
image-variant: [ 'apache', 'cli', 'fpm', 'supervisor', 'dev', 'oci', 'supervisor-oci' ]
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -38,6 +38,8 @@ jobs:
docker push $IMAGE_ID:$VERSION
docker tag $tmpName $IMAGE_ID:${VERSION}-$PHP_VERSION
docker push $IMAGE_ID:${VERSION}-$PHP_VERSION
docker tag $tmpName $IMAGE_ID:${VERSION}-$PHP_SHORT_VERSION
docker push $IMAGE_ID:${VERSION}-$PHP_SHORT_VERSION
if [ "$VERSION" == "fpm" ]; then
docker tag $tmpName $IMAGE_ID:latest
docker push $IMAGE_ID:latest
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ This use the apache base image
### php-8-debian:dev or php-8-debian:dev-{php-version}
This use the apache base image with xdebug enabled

### 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

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

### 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
### php-8-debian:oci or php-8-debian:supervisor-oci-{php-version}
This use the fpm base image with oci8 extension enabled and set supervisor as entry point. Mount any supervisor config file as /etc/supervisor/conf.d/*.conf

0 comments on commit fb59382

Please sign in to comment.