Compare commits

...
7 Commits
Author SHA1 Message Date
luca 862401183c Update Docker registry to use variables instead of hardcoded values
Publish Docker image / docker (push) Successful in 2m3s
2026-07-06 13:00:55 +02:00
luca 190bc4cc4f 8.2.32
Publish Docker image / docker (push) Failing after 8s
2026-07-06 12:57:30 +02:00
luca f066d8443e 8.2.23
Publish Docker image / docker (push) Successful in 2m55s
2024-09-04 15:28:52 +02:00
luca afd7b18000 8.2.22
Publish Docker image / docker (push) Successful in 2m2s
2024-08-14 13:40:48 +02:00
luca 19eacd1918 git.pretecno.com registry
Publish Docker image / docker (push) Has been cancelled
2024-08-14 13:39:41 +02:00
luca 1e011ae3ec 8.2.21
Publish Docker image / docker (push) Failing after 4m49s
2024-07-26 09:53:03 +02:00
luca bfa0f15ec3 8.2
Publish Docker image / docker (push) Successful in 5m37s
2024-05-21 15:47:00 +02:00
3 changed files with 7 additions and 6 deletions
+5 -4
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 -1
View File
@@ -1,4 +1,4 @@
FROM php:8.2.19-fpm-bookworm
FROM php:8.2.32-fpm-trixie
RUN apt-get update && \
apt-get -y --no-install-recommends install \
+1 -1
View File
@@ -1,2 +1,2 @@
# docker-php-fpm-ext
PHP 8.1 FPM with custom extensions
PHP 8.2 FPM with custom extensions