1
0
mirror of https://github.com/xiaoqidun/pfenv.git synced 2025-04-13 11:07:25 +08:00

Compare commits

...

12 Commits

2 changed files with 19 additions and 8 deletions

@ -1,10 +1,21 @@
---
kind: pipeline
type: docker
name: docker
name: default
node:
region: cn
steps:
- name: docker
- name: docker-cn
pull: if-not-exists
image: plugins/docker
settings:
repo: ccr.ccs.tencentyun.com/xiaoqidun/pfenv
registry: ccr.ccs.tencentyun.com
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: Dockerfile
- name: docker-hk
pull: if-not-exists
image: plugins/docker
settings:

@ -1,14 +1,14 @@
# 基础镜像
FROM php:8.2.5-fpm
FROM php:8.3.12-fpm
# 作者信息
LABEL MAINTAINER="xiaoqidun@gmail.com"
LABEL authors="xiaoqidun"
# 安装扩展
RUN pecl install redis-5.3.7 \
RUN pecl install redis-6.1.0RC1 \
&& docker-php-ext-enable redis
RUN pecl install xdebug-3.2.1 \
RUN pecl install xdebug-3.3.2 \
&& docker-php-ext-enable xdebug
RUN pecl install runkit7-4.0.0a6 \