php-base (php74-fpm-nginx-alpine)
Installation
docker pull forgejo-dev.ovalek.cz/common/php-base:php74-fpm-nginx-alpinesha256:cd6406cebe85a7add6e4870da07ad0b683e2779f886c1cc7c51d77ec98ef00d5Image layers
| ADD file:ceeb6e8632fafc657116cbf3afbd522185a16963230b57881073dad22eb0e1a3 in / |
| CMD ["/bin/sh"] |
| ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c |
| /bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl |
| /bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data |
| ENV PHP_INI_DIR=/usr/local/etc/php |
| /bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 777 /var/www/html |
| ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 |
| ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 |
| ENV PHP_LDFLAGS=-Wl,-O1 -pie |
| ENV GPG_KEYS=42670A7FE4D0441C8E4632349E4FDC074A4EF02D 5A52880781F755608BF815FC910DEB46F53EA312 |
| ENV PHP_VERSION=7.4.33 |
| ENV PHP_URL=https://www.php.net/distributions/php-7.4.33.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-7.4.33.tar.xz.asc |
| ENV PHP_SHA256=924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927 |
| /bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps |
| COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ |
| /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; ln -sv /usr/include/gnu-libiconv/*.h /usr/include/; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear $(test "$gnuArch" = 's390x-linux-musl' && echo '--without-pcre-jit') --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version |
| COPY multi:869bde9dbeae74886a05c9e2107b3e3b4877116db8c6d9adbaff2719f9fb5262 in /usr/local/bin/ |
| /bin/sh -c docker-php-ext-enable sodium |
| ENTRYPOINT ["docker-php-entrypoint"] |
| WORKDIR /var/www/html |
| /bin/sh -c set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; if we send this to /proc/self/fd/1, it never appears'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf |
| STOPSIGNAL SIGQUIT |
| EXPOSE 9000 |
| CMD ["php-fpm"] |
| RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps autoconf build-base libtool pkgconf git curl-dev oniguruma-dev freetype-dev libjpeg-turbo-dev libpng-dev icu-dev bzip2-dev libxml2-dev libzip-dev gettext-dev openldap-dev; docker-php-ext-configure gd --with-freetype --with-jpeg; mkdir -p /usr/local/include/php/ext/dom; cp /usr/src/php/ext/dom/*_ce.h /usr/local/include/php/ext/dom/ || true; docker-php-ext-install -j"$(nproc)" xml dom xmlreader xmlwriter soap; docker-php-ext-install -j"$(nproc)" bcmath bz2 calendar ctype curl exif fileinfo gd gettext intl ldap mbstring mysqli pdo pdo_mysql zip; apk del .build-deps; apk add --no-cache bzip2 freetype libjpeg-turbo libpng icu icu-data-full libxml2 libzip openldap; apk del icu-data-en || true; rm -rf /var/cache/apk/* /tmp/* # buildkit |
| ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ # buildkit |
| RUN /bin/sh -c chmod +x /usr/local/bin/install-php-extensions && sync && install-php-extensions imagick # buildkit |
| COPY /usr/bin/composer /usr/bin/composer # buildkit |
| RUN /bin/sh -c set -eux; { echo "memory_limit = 512M"; echo "max_execution_time = 300"; echo "max_input_time = 300"; echo "post_max_size = 40M"; echo "upload_max_filesize = 40M"; echo "max_file_uploads = 20"; echo "file_uploads = On"; echo "expose_php = Off"; echo "display_errors = Off"; echo "log_errors = On"; echo "error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT"; echo "allow_url_fopen = On"; echo "allow_url_include = Off"; echo "short_open_tag = Off"; echo "default_charset = UTF-8"; echo "date.timezone = Europe/Prague"; } > /usr/local/etc/php/conf.d/custom.ini # buildkit |
| WORKDIR /var/www/html |
| ARG user=www-data |
| ARG uid=1000 |
| RUN |2 user=www-data uid=1000 /bin/sh -c apk add --no-cache nginx supervisor && rm -rf /var/cache/apk/* # buildkit |
| RUN |2 user=www-data uid=1000 /bin/sh -c sed -i 's/^daemonize = yes/daemonize = no/' /usr/local/etc/php-fpm.conf && { echo '[global]'; echo 'error_log = /dev/stderr'; echo ''; echo '[www]'; echo 'access.log = /dev/stdout'; echo ''; echo 'access.format = "[%{%Y-%m-%dT%H:%M:%S%z}t] %R \"%r\" %s"'; echo ''; echo 'listen = /var/run/php-fpm.sock'; echo 'listen.owner = www-data'; echo 'listen.group = www-data'; echo 'listen.mode = 0660'; } > /usr/local/etc/php-fpm.d/zzz-overrides.conf && mkdir -p /var/run && chown -R www-data:www-data /var/run # buildkit |
| RUN |2 user=www-data uid=1000 /bin/sh -c sed -i 's/^user nginx;/user www-data;/' /etc/nginx/nginx.conf && mkdir -p /etc/nginx/conf.d && rm -f /etc/nginx/conf.d/default.conf /etc/nginx/http.d/default.conf && { echo 'server {'; echo ' listen 80 default_server;'; echo ' listen [::]:80 default_server;'; echo ' server_name _;'; echo ' # Tell nginx to use our new log format'; echo ' access_log /dev/stdout combined;'; echo ' error_log /dev/stderr;'; echo ' root /var/www/html/www;'; echo ' index index.php index.html;'; echo ' location / {'; echo ' try_files $uri $uri/ /index.php?$query_string;'; echo ' }'; echo ' location ~ \.php$ {'; echo ' try_files $uri =404;'; echo ' fastcgi_split_path_info ^(.+\.php)(/.+)$;'; echo ' fastcgi_pass unix:/var/run/php-fpm.sock;'; echo ' fastcgi_index index.php;'; echo ' include fastcgi_params;'; echo ' fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;'; echo ' fastcgi_param PATH_INFO $fastcgi_path_info;'; echo ' }'; echo ' location ~ /\.ht {'; echo ' deny all;'; echo ' }'; echo '}'; } > /etc/nginx/http.d/default.conf # buildkit |
| RUN |2 user=www-data uid=1000 /bin/sh -c { echo '[supervisord]'; echo 'nodaemon=true'; echo 'pidfile=/var/run/supervisord.pid'; echo 'logfile=/dev/stdout'; echo 'logfile_maxbytes=0'; echo 'user=root'; echo ''; echo '[program:php-fpm]'; echo 'command=/usr/local/sbin/php-fpm'; echo 'autostart=true'; echo 'autorestart=true'; echo 'priority=5'; echo 'user=root'; echo 'stdout_logfile=/dev/stdout'; echo 'stdout_logfile_maxbytes=0'; echo 'stderr_logfile=/dev/stderr'; echo 'stderr_logfile_maxbytes=0'; echo ''; echo '[program:nginx]'; echo 'command=/usr/sbin/nginx -g "daemon off;"'; echo 'autostart=true'; echo 'autorestart=true'; echo 'priority=10'; echo 'user=root'; echo 'stdout_logfile=/dev/stdout'; echo 'stdout_logfile_maxbytes=0'; echo 'stderr_logfile=/dev/stderr'; echo 'stderr_logfile_maxbytes=0'; } > /etc/supervisord.conf # buildkit |
| EXPOSE [80/tcp] |
| CMD ["/usr/bin/supervisord" "-c" "/etc/supervisord.conf"] |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.revision | d27b8e2a41d27c6062bd1c12fcdfbdab72f8fca4 |
Details
Versions (28)
View all
php84-fpm-deb-13-trixie_slim_nginx
2025-11-04
php84-fpm-deb-13-trixie_slim
2025-11-04
php84-fpm-deb-13-trixie_nginx
2025-11-04
php84-fpm-deb-13-trixie_build-slim
2025-11-04
php84-fpm-deb-13-trixie
2025-11-04