Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use PHP extension configuration for Docker

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "Docker how to use PHP extension configuration", interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let Xiaobian take you to learn "Docker how to use PHP extension configuration"!

# PHP container configuration #Build from official base version FROM php:7.2-fpm#Official version default install extensions: # Core, ctype, curl# date, dom# fileinfo, filter, ftp# hash# iconv# json# libxml# mbstring, mysqlnd# openssl# pcre, PDO, pdo_sqlite, Phar, posix# readline, Reflection, session, SimpleXML, sodium, SPL, sqlite3, standard# tokenizer# xml, xmlreader, xmlwriter# zlib# 1.0.2 Add bcpath, calendar, exif, gettext, sockets, dba, # mysqli, pcntl, pdo_mysql, shmop, sysvmsg, sysvsem, sysvshm extension RUN docker-php-ext-install -j$(nproc) bcmath calendar exif gettext \sockets dba mysqli pcntl pdo_mysql shmop sysvmsg sysvsem sysvshm# 1.0.3 extension bz2 added, Read and write bzip2 (.bz2) Compressed file RUN apt-get update && \apt-get install -y --no-install-recommendations libbz2-dev & \rm -r /var/lib/apt/lists/* && \docker-php-ext-install -j$(nproc) bz2#1.0.4 Add enchant extension, Spellchecker library RUN apt-get update && \apt-get install -y --no-install-recommendations libenchant-dev && \rm -r /var/lib/apt/lists/* && \docker-php-ext-install -j$(nproc) enchant# 1.0.5 Added GD extension. image processing RUN apt-get update && \apt-get install -y --no-install-recommends libfreetype6-dev libjpeg62-turbo-dev libpng-dev && \rm -r /var/lib/apt/lists/* && \docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir= /usr/include/ & \docker-php-ext-install -j$(nproc) gd# 1.0.6 Added gmp extension, GMPRUN apt-get update && \apt-get install -y --no-install-recommendations libgmp-dev && \rm -r /var/lib/apt/lists/* & \docker-php-ext-install -j$(nproc) gmp# 1.0.7 Added soap wddx xmlrpc tidy xsl Extended RUN apt-get update && \apt-get install -y --no-install-recommendations libxml2-dev libtidy-libxslt1-dev & \rm -r /var/lib/apt/lists/* && \docker-php-ext-install -j$(nproc) soap wddx xmlrpc tidy xsl# 1.0.8 zip extension apt-get update && \apt-get install -y --no-install-recommendations libzip-dev && \rm -r /var/apt/lists/* && \docker-php-ext-install -j$(nproc) zip# 1.0.9 snmp extension RUN apt-get update & \apt-lib get install -y --no-install-recommends libsnmp-dev && \rm -r /var/lib/apt/lists/* && \docker-php-ext-install -j$(nproc) snmp# 1.0.10 Add pgsql, pdo_pgsql extension RUN apt-get update && \apt-get install -y --no-install-recommendations libpq-dev && \rm -r /var/lib/apt/lists/* && \docker-php-ext-install -j$(nproc) pgsql pdo_pgsql# 1.0.11 Added pspell extension RUN apt-get update && \apt-get install -y --no-install-recommends libpspell-dev && \rm -r /var/lib/apt/lists/* && \docker-php-ext-install -j$(nproc) pspell# 1.0.12 Added recode extension RUN apt-get update && \apt-get install -y --no-install-recommends librecode-dev && \rm -r /var lib/apt/lists/* && \docker-php-ext-install -j$(nproc) recode# 1.0.13 Add PDO_Firebird Extension RUN apt-get update && \apt-get install -y --no-install-recommends firebird-dev && \rm -r /var/lib/apt/lists/* && \docker-php-ext-install -j$(nproc) pdo_firebird# 1.0.14 Add pdo_dblib Extension RUN apt-get update && \apt-get install -y --no-install-recommends freetds-dev && \rm -r /var/lib/apt/lists/* & \docker-php-ext-configure pdo_dblib --with-libdir=lib/x86_64-linux-gnu & \docker-php-ext-install -j$(nproc) pdo_dblib# 1.0.15 Add ldap Extension RUN apt-get update && \apt-get install -y --no-install-recommends libldap2-dev &&\rm -r /var/lib/apt/lists/* & \docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu & \docker-php-ext-install -j$(nproc) ldap# 1.0.16 Add imap extension RUN apt-get update && \apt-get install -y --no-install-recommends libc-client-libkrb5-dev & \rm -r/lib/apt/lists/* & \docker-php-ext-dev configure imap --with-keranthus--with-imap-ssl && \docker-php-ext-install -j$(nproc) imap# 1.0.17 add interbase extension RUN apt-get update && \apt-get install -y --no-install-recommends firebird-dev & \rm -r /var/lib/apt/lists/* & \docker-php-ext-install -j$(nproc) interbase#1.0.18 Add intl extension RUN apt-get update && \apt-get install -y --no-install-recommends libicu-dev & \rm -r /var/lib/apt/lists/* && \docker-php-ext-install -j$(nproc) intl# 1.0.19 Add mcrypt extension RUN apt-get update && \ apt-get install -y --no-install-recommends libmcrypt-dev & \rm -r /var/lib/apt/lists/* && \pecl install mcrypt-1.0.1 && \docker-php-ext-enable mcrypt# 1.0.20 image expand RUN export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" && \apt-get update &&\apt-get install -y --no-install-recommends magickwand-dev & \rm -rf /var/lib/apt/lists/* && \pecl install image-3.4.3 & libs & \docker-php-ext-enable imagick# 1.0.21 Add Memcached Extension RUN apt-get update && \ apt-get install -y --no-install-recommends zlib1g-dev libmemcached-dev && \rm -r /var/lib/apt/lists/* && \pecl install memcached && \docker-php-ext-enable memcached# 1.0.22 redis Extension RUN pecl install redis-4.0.1 && docker-php-ext-enable redis#1.0.23 Add opcache extension RUN docker-php-ext-configure opcache --enable-opcache && docker-php-ext-install opcache# 1.0.24 Add odbc, pdo_odbc extension RUN set -ex; \docker-php-source extract; \{ \ echo '# https://github.com/docker-library/php/issues/103#issuecomment-271413933'; \ echo 'AC_DEFUN([PHP_ALWAYS_SHARED],[])dnl'; \ echo; \ cat /usr/src/php/ext/odbc/config.m4; \} > temp.m4; \mv temp.m4 /usr/src/php/ext/odbc/config.m4; \apt-get update; \apt-get install -y --no-install-recommends unixodbc-dev; \rm -rf /var/lib/apt/lists/*; \docker-php-ext-configure odbc --with-unixODBC=shared,/usr; \docker-php-ext-configure pdo_odbc --with-pdo-odbc=unixODBC,/usr;\docker-php-ext-install odbc pdo_odbc; \docker-php-source delete#Mirror Info LABEL Author="Leo"LABEL Version="1.0.25-fpm"LABEL Description="PHP FPM 7.2 Mirror. All extensions. "At this point, I believe that everyone has a deeper understanding of"Docker how to use PHP extension configuration ", may wish to actually operate it! Here is the website, more related content can enter the relevant channels for inquiry, pay attention to us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report