docker使用php较老版本出现pecl无法安装扩展问题

问题:

  • Channel "pear.php.net" is not responding over http://, failed with message: Connection to ssl://pear.php.net:443' failed:Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?
  • No releases available for package "pecl.php.net/imagick"

解决方法:

  • 删除证书

    FROM php:5.6-fpm

    删除证书

    RUN rm /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt

  • 通过安装包手动安装,需要手动处理php.ini问题

    ...
    && pecl channel-update pecl.php.net
    && {
    pecl install imagick || (
    wget --no-check-certificate https://pecl.php.net/get/imagick -O ./imagick_latest.tgz
    && pecl install --offline ./imagick_latest.tgz
    && rm ./imagick_latest.tgz
    );
    }
    ...

附上GitHub issue:

https://github.com/php/php-src/issues/11486

相关推荐
zimoyin1 小时前
kotlin Android AccessibilityService 无障碍入门
android·开发语言·kotlin
牛奔8 小时前
Docker配置远程连接
运维·docker·云原生·容器·eureka
my_styles9 小时前
docker-compose部署项目(springboot服务)以及基础环境(mysql、redis等)ruoyi-ry
spring boot·redis·后端·mysql·spring cloud·docker·容器
独行soc10 小时前
2025年渗透测试面试题总结-百度面经(题目+回答)
运维·开发语言·经验分享·学习·面试·渗透测试·php
Liudef0612 小时前
使用Docker部署MongoDB
mongodb·docker·容器
pengone12 小时前
PHP8.0版本导出excel失败
php·excel
韩仔搭建12 小时前
第二章:安卓端启动流程详解与疑难杂症调试手册
android·ui·娱乐
A-花开堪折13 小时前
Android7 Input(七)App与input系统服务建立连接
android
冰糖葫芦三剑客13 小时前
Android 自定义悬浮拖动吸附按钮
android
吃汉堡吃到饱13 小时前
【Android】从Choreographer到UI渲染(二)
android·ui