我已经用laradock设置了docker.
我正在使用以下包
"adldap2/adldap2-laravel": "^2.1"
我收到以下错误:
Call to undefined function Adldap\ldap_explode_dn()
我应该进入我的docker工作区并尝试安装它吗?
docker-compose exec workspace bash
我该如何安装?
好像我找不到apt-get或apt-cache的PHP7.0-ldap包……
是否可以通过docker-compose或通过编辑某个docker文件来启用它? (PHP-fpm / Dockerfile-70?
#
#--------------------------------------------------------------------------
# Image Setup
#--------------------------------------------------------------------------
#
# To edit the 'PHP-fpm' base Image,visit its repository on Github
# https://github.com/LaraDock/PHP-fpm
#
# To change its version,see the available Tags on the Docker Hub:
# https://hub.docker.com/r/laradock/PHP-fpm/tags/
#
FROM laradock/PHP-fpm:7.0--1.2
MAINTAINER Mahmoud Zalt MysqL","libssl-dev",....)
# are installed on the base image 'laradock/PHP-fpm' image. If you want
# to add more Software's or remove existing one,you need to edit the
# base image (https://github.com/LaraDock/PHP-fpm).
#
#
#--------------------------------------------------------------------------
# Optional Software's Installation
#--------------------------------------------------------------------------
#
# Optional Software's will only be installed if you set them to `true`
# in the `docker-compose.yml` before the build.
# Example:
# - INSTALL_ZIP_ARCHIVE=true
# - ...
#
#####################################
# xDebug:
#####################################
ARG INSTALL_XDEBUG=false
RUN if [ ${INSTALL_XDEBUG} = true ]; then \
# Install the xdebug extension
pecl install xdebug && \
docker-PHP-ext-enable xdebug \
;fi
# Copy xdebug configration for remote debugging
COPY ./xdebug.ini /usr/local/etc/PHP/conf.d/xdebug.ini
#####################################
# MongoDB:
#####################################
ARG INSTALL_MONGO=false
RUN if [ ${INSTALL_MONGO} = true ]; then \
# Install the mongodb extension
pecl install mongodb && \
docker-PHP-ext-enable mongodb \
;fi
#####################################
# ZipArchive:
#####################################
ARG INSTALL_ZIP_ARCHIVE=false
RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
# Install the zip extension
pecl install zip && \
docker-PHP-ext-enable zip \
;fi
#####################################
# PHP Memcached:
#####################################
ARG INSTALL_MEMCACHED=false
RUN if [ ${INSTALL_MEMCACHED} = true ]; then \
# Install the PHP memcached extension
curl -L -o /tmp/memcached.tar.gz "https://github.com/PHP-memcached-dev/PHP-memcached/archive/PHP7.tar.gz" \
&& mkdir -p memcached \
&& tar -C memcached -zxvf /tmp/memcached.tar.gz --strip 1 \
&& ( \
cd memcached \
&& PHPize \
&& ./configure \
&& make -j$(nproc) \
&& make install \
) \
&& rm -r memcached \
&& rm /tmp/memcached.tar.gz \
&& docker-PHP-ext-enable memcached \
;fi
#####################################
# PHP Aerospike:
#####################################
ARG INSTALL_AEROSPIKE_EXTENSION=false
ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION}
# Copy aerospike configration for remote debugging
COPY ./aerospike.ini /usr/local/etc/PHP/conf.d/aerospike.ini
RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \
# Install the PHP aerospike extension
curl -L -o /tmp/aerospike-client-PHP.tar.gz "https://github.com/luciano-jr/aerospike-client-PHP/archive/ master.tar.gz" \
&& mkdir -p aerospike-client-PHP \
&& tar -C aerospike-client-PHP -zxvf /tmp/aerospike-client-PHP.tar.gz --strip 1 \
&& ( \
cd aerospike-client-PHP/src/aerospike \
&& PHPize \
&& ./build.sh \
&& make install \
) \
&& rm /tmp/aerospike-client-PHP.tar.gz \
;fi
#####################################
# Opcache:
#####################################
ARG INSTALL_OPCACHE=false
RUN if [ ${INSTALL_OPCACHE} = true ]; then \
docker-PHP-ext-install opcache && \
docker-PHP-ext-enable opcache \
;fi
# Copy opcache configration
COPY ./opcache.ini /usr/local/etc/PHP/conf.d/opcache.ini
#####################################
# LDAP:
#####################################
RUN \
apt-get update && \
apt-get install libldap2-dev -y && \
#rm -rf /var/lib/apt/lists/* && \
docker-PHP-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \
docker-PHP-ext-install ldap
#
#--------------------------------------------------------------------------
# Final Touch
#--------------------------------------------------------------------------
#
ADD ./laravel.ini /usr/local/etc/PHP/conf.d
ADD ./laravel.pool.conf /usr/local/etc/PHP-fpm.d/
RUN rm -r /var/lib/apt/lists/*
RUN usermod -u 1000 www-data
WORKDIR /var/www/laravel
CMD ["PHP-fpm"]
EXPOSE 9000
最佳答案
看一下这个:
原文链接:https://www.f2er.com/docker/435841.htmlhttps://github.com/docker-library/php/issues/75
RUN \
apt-get update && \
apt-get install libldap2-dev -y && \
rm -rf /var/lib/apt/lists/* && \
docker-PHP-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \
docker-PHP-ext-install ldap