Compare commits

..

11 Commits
3.16 ... main

Author SHA1 Message Date
09a95f48c0
use alpiune 3.21 with php 8.4
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 31s
2025-03-31 13:16:53 +02:00
5b7c8c11e4
use alpine 3.20
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 0s
2024-05-27 10:41:16 +02:00
8a19eaba92
use php-fpm83 everywhere 2023-12-14 21:41:54 +01:00
a0aa33fe4f
use alpine 3.19 and php-fpm 8.3 2023-12-14 17:29:46 +01:00
9dde9649dd
use php 8.2 base 2023-05-30 11:02:02 +02:00
dd7ab5fd9f
use php 8.2 base 2023-05-30 10:54:19 +02:00
776a0022f1
update to php 8.2 2023-05-30 10:45:42 +02:00
cfcd3e76d7
use new alpine 3.18 as base 2023-05-30 10:09:19 +02:00
90612dfacb push to alpine 3.17 and php 8.1 2022-11-23 13:41:34 +01:00
4ae965fd62 Add '.woodpecker.yml' 2022-11-11 06:46:18 +00:00
5dbe8780d9 Delete '.gitlab-ci.yml' 2022-11-11 06:45:10 +00:00
10 changed files with 24 additions and 39 deletions

View File

@ -0,0 +1,12 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

View File

@ -1,26 +0,0 @@
variables:
CONTAINER_NAME: thallian/php8-fpm
build:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
- mkdir -p /kaniko/.docker
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "$CI_REGISTRY_USER" "$CI_REGISTRY_PASSWORD" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
- >-
/kaniko/executor
--context "$CI_PROJECT_DIR"
--dockerfile "$CI_PROJECT_DIR/Dockerfile"
--destination "$CONTAINER_NAME:$CI_COMMIT_SHA"
--destination "$CONTAINER_NAME:$CI_COMMIT_REF_NAME"
--destination "$CONTAINER_NAME:latest"
downstream-nextcloud:
stage: .post
trigger: containers/nextcloud
downstream-roundcube:
stage: .post
trigger: containers/roundcube

5
Containerfile Normal file
View File

@ -0,0 +1,5 @@
FROM docker.io/thallian/confd-env:3.21-3.2.0.2
RUN apk --no-cache add php84-fpm
ADD /rootfs /

View File

@ -1,6 +0,0 @@
FROM docker.io/thallian/confd-env:3.16
RUN apk --no-cache add php8-fpm
RUN ln -s /usr/bin/php8 /usr/bin/php
ADD /rootfs /

View File

@ -1,3 +1,3 @@
[template]
src = "00_memory_limit.ini.tmpl"
dest = "/etc/php8/conf.d/00_memory_limit.ini"
dest = "/etc/php84/conf.d/00_memory_limit.ini"

View File

@ -1,3 +1,3 @@
[template]
src = "01_max_execution_time.ini.tmpl"
dest = "/etc/php8/conf.d/01_max_execution_time.ini"
dest = "/etc/php84/conf.d/01_max_execution_time.ini"

View File

@ -1,3 +1,3 @@
[template]
src = "02_opcache.ini.tmpl"
dest = "/etc/php8/conf.d/02_opcache.ini"
dest = "/etc/php84/conf.d/02_opcache.ini"

View File

@ -1,3 +1,3 @@
[template]
src = "www.conf.tmpl"
dest = "/etc/php8/php-fpm.d/www.conf"
dest = "/etc/php84/php-fpm.d/www.conf"

View File

@ -14,7 +14,7 @@
; Pid file
; Note: the default prefix is /var
; Default Value: none
;pid = run/php-fpm7.pid
;pid = run/php84-fpm.pid
; Error log file
; If it's set to "syslog", log is sent to syslogd instead of being written
@ -122,4 +122,4 @@ error_log = syslog
; Relative path can also be used. They will be prefixed by:
; - the global prefix if it's been set (-p argument)
; - /usr otherwise
include=/etc/php8/php-fpm.d/*.conf
include=/etc/php84/php-fpm.d/*.conf

View File

@ -1,3 +1,3 @@
#!/bin/sh
exec php-fpm8 --nodaemonize --force-stderr
exec php-fpm84 --nodaemonize --force-stderr