xdebug扩展未与php:5.6-apache一起安装

时间:2019-03-18 08:55:03

标签: php docker-compose dockerfile xdebug

我正在尝试将xdebug安装到我的dockerfile构建中,但它没有以php:5.6-apache作为基本映像进行安装。

它返回以下消息;

ERROR: Service 'php' failed to build: The command '/bin/sh -c apt-get update && apt-get install -y   ...  
&& pecl install xdebug   returned a non-zero code: 1

这是我的dockerfile:

FROM php:5.6-apache

ENV S6_OVERLAY_VERSION 1.11.0.1


RUN tar xzf /tmp/s6-overlay-amd64.tar.gz -C /

RUN apt-get update && apt-get install -y \
    libldap2-dev \
    --no-install-recommends \
    && rm -r /var/lib/apt/lists/* \
    && docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
    && docker-php-ext-install ldap \
     && pecl install xdebug \
    && docker-php-ext-install mysqli pdo pdo_mysql

RUN a2enmod rewrite

COPY ./docker/rootfs /
COPY . /app

WORKDIR /app

ENTRYPOINT ["/init"]

如何使用PHP5安装xedbug

2 个答案:

答案 0 :(得分:0)

Dockerfile

RUN git clone https://github.com/xdebug/xdebug.git \
&& cd xdebug \
&& git checkout tags/XDEBUG_2_5_5 \
&& phpize \
&& ./configure --enable-xdebug \
&& make \
&& make install

是否需要以下内容取决于您的确切用法。但是无论如何,我都会包括在内,以便您可以尝试一下。

.bashrc

export PHP_IDE_CONFIG="serverName=docker";

php.ini-其中ip应该是您的docker网络的本地计算机。日志仅用于帮助您调试安装是否无效。

xdebug.remote_host=172.20.0.1
xdebug.idekey="PHPSTORM"
xdebug.remote_log=/srv/www/var/log/xdebug.log

答案 1 :(得分:0)

接受的答案假定 git 已安装在您的容器中。我认为这是安装特定版本的 xdebug 的“更正确”的方法:

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

参见https://stackoverflow.com/a/46831699/2105015