13 Commits
8.3.11 ... 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
3 changed files with 10 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ on:
push:
env:
IMAGE_TAG: git.pretecno.com/pretecno/php-fpm-ext:${{ github.ref_name }}
IMAGE_TAG: ${{ vars.DOCKERREGISTRY_HOST }}/${{ github.repository }}:${{ github.ref_name }}
jobs:
docker:
@@ -17,9 +17,9 @@ jobs:
- name: login to the docker hub
uses: docker/login-action@v2
with:
registry: git.pretecno.com
username: ${{ secrets.PRETECNOREGISTRY_USERNAME }}
password: ${{ secrets.PRETECNOREGISTRY_PASSWORD }}
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:
@@ -33,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. 🎉

View File

@@ -1,4 +1,4 @@
FROM php:8.3.11-fpm-bookworm
FROM php:8.3.27-fpm-bookworm
RUN apt-get update && \
apt-get -y --no-install-recommends install \
@@ -36,3 +36,5 @@ RUN docker-php-ext-install -j$(nproc) \
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"