如何在docker的官方php-fpm-alpine图像上安装XDebug?

前端之家收集整理的这篇文章主要介绍了如何在docker的官方php-fpm-alpine图像上安装XDebug?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用wordpressPHP7.1-fpm-alpine,它基于PHP:7.1-fpm-alpine(https://github.com/docker-library/wordpress/blob/master/php7.1/fpm-alpine/Dockerfile).

我试过RUN pecl install xdebug-2.5.0&& docker-PHP-ext-enable xdebug

这会在构建时导致错误

Step 19/19 : RUN pecl install xdebug-2.5.0     && docker-PHP-ext-enable xdebug
 ---> Running in 52c988e12cb2
downloading xdebug-2.5.0.tgz ...
Starting to download xdebug-2.5.0.tgz (267,640 bytes)
........................................................done: 267,640 bytes
76 source files,building
running: PHPize
Configuring for:
PHP Api Version:         20160303
Zend Module Api No:      20160303
Zend Extension Api No:   320160303
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then,rerun this script.
以下内容足以简单地在该图像上安装xdebug:

FROM wordpress:PHP7.1-fpm-alpine

RUN apk add --no-cache $PHPIZE_DEPS \
    && pecl install xdebug-2.5.0 \
    && docker-PHP-ext-enable xdebug

构建该结构然后从结果图像中的shell运行会产生以下结果:

$PHP -i | grep Xdebug
    with Xdebug v2.5.0,Copyright (c) 2002-2016,by Derick Rethans
原文链接:https://www.f2er.com/docker/437018.html

猜你在找的Docker相关文章