19 Commits
8.3.7 ... 8.3

Author SHA1 Message Date
K
ea755a8b7a 8.3.27
Some checks failed
Publish Docker image / docker (push) Failing after 1s
2025-11-06 08:49:58 +01:00
K
27f5d781aa 8.3.26
All checks were successful
Publish Docker image / docker (push) Successful in 3m18s
2025-10-16 17:46:14 +02:00
K
4906563838 8.3.25
All checks were successful
Publish Docker image / docker (push) Successful in 2m19s
2025-09-01 16:30:26 +02:00
K
600700814d 8.3.23
All checks were successful
Publish Docker image / docker (push) Successful in 2m51s
2025-07-30 17:33:10 +02:00
K
bd450d140d 8.3.22
All checks were successful
Publish Docker image / docker (push) Successful in 2m53s
2025-06-20 16:52:23 +02:00
K
d2672a6801 8.3.21
All checks were successful
Publish Docker image / docker (push) Successful in 2m33s
2025-05-26 14:04:51 +02:00
K
8e55f0fa15 8.3.19
All checks were successful
Publish Docker image / docker (push) Successful in 1m55s
2025-03-28 11:54:07 +01:00
K
dcf06ebe59 repo name
All checks were successful
Publish Docker image / docker (push) Successful in 3m41s
2025-02-26 09:09:36 +01:00
K
a7bee66741 custom registry
Some checks are pending
Publish Docker image / docker (push) Waiting to run
2025-02-26 09:02:07 +01:00
K
be27ed7aee 8.3.17
Some checks failed
Publish Docker image / docker (push) Failing after 49s
2025-02-26 08:53:28 +01:00
K
59628f1064 8.3.15
All checks were successful
Publish Docker image / docker (push) Successful in 2m22s
2025-01-15 17:16:37 +01:00
K
ca051d8fe5 custom access.format
All checks were successful
Publish Docker image / docker (push) Successful in 2m47s
2024-11-27 10:56:23 +01:00
K
a9f541eca7 8.3.14
Some checks failed
Publish Docker image / docker (push) Failing after 14m0s
2024-11-27 09:42:29 +01:00
K
76d74d311f vips + zstd
All checks were successful
Publish Docker image / docker (push) Successful in 3m16s
2024-09-04 15:48:33 +02:00
K
df9fd6b16d exclude imagick
Some checks failed
Publish Docker image / docker (push) Failing after 6m13s
2024-09-04 15:27:50 +02:00
K
9d44994dfa 8.3.11
Some checks failed
Publish Docker image / docker (push) Failing after 1m28s
2024-09-04 12:08:17 +02:00
K
3f44416654 git.pretecno.com registry
Some checks failed
Publish Docker image / docker (push) Failing after 3m34s
2024-08-14 13:30:59 +02:00
K
7f804d296c 8.3.10
Some checks failed
Publish Docker image / docker (push) Failing after 17s
2024-08-14 12:21:28 +02:00
K
256e30c84f 8.3.9
Some checks failed
Publish Docker image / docker (push) Failing after 2m32s
2024-07-11 11:51:34 +02:00
4 changed files with 17 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ on:
push:
env:
IMAGE_TAG: kenayagi/php-fpm-ext:${{ github.ref_name }}
IMAGE_TAG: ${{ vars.DOCKERREGISTRY_HOST }}/${{ github.repository }}:${{ github.ref_name }}
jobs:
docker:
@@ -17,8 +17,9 @@ jobs:
- name: login to the docker hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
registry: ${{ vars.DOCKERREGISTRY_HOST }}
username: ${{ vars.DOCKERREGISTRY_USERNAME }}
password: ${{ secrets.DOCKERREGISTRY_PASSWORD }}
- name: build and push docker image
uses: docker/build-push-action@v4
env:
@@ -32,7 +33,7 @@ jobs:
- name: send telegram message
uses: https://github.com/appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
to: ${{ vars.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
[Docker] ${{ env.IMAGE_TAG }} has just been released. 🎉

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.idea

View File

@@ -1,7 +1,8 @@
FROM php:8.3.7-fpm-bookworm
FROM php:8.3.27-fpm-bookworm
RUN apt-get update && \
apt-get -y --no-install-recommends install \
git \
libavif-dev \
libbz2-dev \
libfreetype6-dev \
@@ -10,15 +11,15 @@ RUN apt-get update && \
libjpeg-dev \
libmagickwand-dev \
libpng-dev \
libvips-dev \
libwebp-dev \
libxml2-dev \
libzip-dev \
libzstd-dev \
&& \
rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-configure gd --with-avif --with-freetype --with-jpeg --with-webp
RUN printf "\n" | pecl install imagick
RUN docker-php-ext-enable imagick
RUN docker-php-ext-install -j$(nproc) \
bcmath \
@@ -32,3 +33,8 @@ RUN docker-php-ext-install -j$(nproc) \
opcache \
xml \
zip
RUN printf \n | pecl install vips && docker-php-ext-enable vips
RUN printf \n | pecl install zstd && docker-php-ext-enable zstd
COPY config/access-format.conf /usr/local/etc/php-fpm.d/access-format.conf

View File

@@ -0,0 +1,2 @@
[www]
access.format = "%{REMOTE_ADDR}e - %u %t \"%m %Q\" %s"