docker/php-node (sha256:a6f93e15032e9bf59c481204f5f1eed4ea0d04baba3afc432d403771c53c6295)

Published 2026-01-03 23:23:45 +00:00 by geusebio in Grey.ooo/docker

Installation

docker pull git.grey.ooo/grey.ooo/docker/php-node@sha256:a6f93e15032e9bf59c481204f5f1eed4ea0d04baba3afc432d403771c53c6295
sha256:a6f93e15032e9bf59c481204f5f1eed4ea0d04baba3afc432d403771c53c6295

About this package

PHP 7.4 base image with Node.js installed

Image layers

ADD file:aa1af71c6b66d2dddee4797236e3e526f70f904ab641cc0dd6b41445cfedf9b4 in /
CMD ["/bin/sh"]
ENV ALPINE_VERSION=3.15
ARG BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch
LABEL org.opencontainers.image.vendor=Grey.ooo org.opencontainers.image.authors=Matt B <matt@grey.ooo> org.opencontainers.image.url=https://git.grey.ooo/Grey.ooo/docker org.opencontainers.image.source=https://git.grey.ooo/Grey.ooo/docker org.opencontainers.image.documentation=https://git.grey.ooo/Grey.ooo/docker/src/branch/main/README.md ooo.grey.version.alpine=3.15
ENV TERM=xterm-256color PATH=/app:/app/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin LOG_PATHS= SVDIR=/etc/services.d SVWAIT=5 PAGER=/usr/bin/less EDITOR=/usr/bin/nano SYSTEM_USER=app
WORKDIR /app
RUN |1 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch /bin/sh -c set -ue apk add --no-cache $BASE_PACKAGES # add our app user adduser -D -u 1000 $SYSTEM_USER -h /home -s /bin/bash chown -R $SYSTEM_USER:$SYSTEM_USER /app # We're about to add the root filesystem and I want to clean house of these runit-related directories before I do so. rm -Rf /etc/service /etc/services /etc/services.d \ /etc/periodic /etc/cron.d \ /etc/conf.d # buildkit
SHELL [/bin/bash -ce]
COPY ./fs/alpine/. / # buildkit
RUN |1 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch /bin/bash -ce # Install lolcat from the edge/testing repo. # This is a workaround for the fact that lolcat is not available in the stable repo. # It lets us have nice colourful banners. apk add --no-cache lolcat --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing # buildkit
STOPSIGNAL SIGHUP
CMD ["/usr/local/bin/entrypoint"]
RUN |1 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch /bin/bash -ce rm /root/.bashrc /root/.profile /home/.bashrc /home/.profile /etc/profile.d/00-bashrc.sh >/dev/null 2>&1 || true ln -s /etc/profile /root/.bashrc ln -s /etc/profile /root/.profile ln -s /etc/profile /home/.bashrc ln -s /etc/profile /home/.profile sed -i 's|/bin/ash|/bin/bash|' /etc/passwd sv-fix-perms /usr/local/bin/validate # buildkit
ARG NGINX_VERSION=1.20
ARG PHP_VERSION=7.4
ARG COMPOSER_VERSION=2.2.25
ARG PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug
ARG EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis
ENV PHP_VERSION=7.4 NGINX_VERSION=1.20 COMPOSER_VERSION=2.2.25 COMPOSER_ALLOW_SUPERUSER=1 COMPOSER_HOME=/var/cache/.composer COMPOSER_FUND=0 PATH=/app/vendor/bin:/app:/app/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PHP_MEMORY_LIMIT=256M PHP_CLI_MEMORY_LIMIT=4096M PHP_ERROR_REPORTING=E_ALL PHP_DISPLAY_ERRORS=1 LOG_PATHS=/var/log/nginx_access.log /var/log/nginx_error.log /var/log/php_access.log /var/log/php_error.log
LABEL ooo.grey.version.php=7.4 ooo.grey.version.nginx=1.20 ooo.grey.version.composer=2.2.25
RUN |6 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis /bin/bash -ce # Install PHP+Friends apk add --no-cache $PHP_PACKAGES $EXTRA_PACKAGES # remove nginx, postgres and redis user if they exist, we didn't ask to create them but install scripts do it anyway deluser nginx || true deluser postgres || true deluser redis || true # Remove the default php config files rm /etc/php /etc/php* -Rf || true # buildkit
COPY ./fs/php-nginx/. / # buildkit
RUN |6 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis /bin/bash -ce if [[ "$PHP_VERSION" == "8.5"* ]]; then echo "Disabling opcache zend_extension inclusion for PHP 8.5" # MB: Comment out "zend_extension" with a ;, its not compatible with PHP 8.5 yet. sed -i 's/^zend_extension/;zend_extension/' /etc/php/conf.d/*_opcache.ini cat /etc/php/conf.d/*_opcache.ini fi # buildkit
RUN |6 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis /bin/bash -ce # Install composer curl https://getcomposer.org/download/$COMPOSER_VERSION/composer.phar --output /usr/local/bin/composer --silent chmod +x /usr/local/bin/composer # buildkit
RUN |6 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis /bin/bash -ce set -ue PHP_VER=$(echo $PHP_VERSION | tr -d '.') # if PHP_VER is less than 80, set it to 7 if [[ "$PHP_VER" -lt 80 ]]; then PHP_VER=7 fi # Move some binary names around as well as other bits and pieces mkdir /run/php-fpm ln -s /etc/php /etc/php${PHP_VER} || true ln -s /usr/bin/php${PHP_VER} /usr/bin/php || true ln -s /usr/sbin/php-fpm${PHP_VER} /usr/sbin/php-fpm ln -s /usr/share/php${PHP_VER} /usr/share/php ln -s /var/log/php${PHP_VER} /var/log/php # if we're PHP 7, we need to comment out pm.max_spawn_rate in /etc/php/php-fpm.d/www.conf if [[ "$PHP_VER" -eq 7 ]]; then sed -i 's/^pm.max_spawn_rate = .*/;pm.max_spawn_rate = 20/' /etc/php/php-fpm.d/www.conf fi # Fix paths mkdir -p /var/log/nginx # Fix execution and ownership /usr/local/bin/sv-fix-perms rm -Rf \ /var/log/php/ /var/log/php*/ \ /var/log/redis \ || true touch /var/log/php_error.log /var/log/php_access.log chown app:app -R \ /app \ /var/lib/nginx /var/log/nginx /run/nginx \ /var/log/php* /run/php-fpm /usr/share/php* # json got merged into PHP in 8.0, so we remove the old json config files if [[ "$PHP_VER" -ge 80 ]]; then rm /etc/php/conf.d/*_json.ini || true fi # buildkit
USER app
RUN |6 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis /bin/bash -ce set -ue mkdir -p ~/.ssh ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts # buildkit
HEALTHCHECK &{["CMD-SHELL" "/usr/local/bin/healthcheck"] "5s" "0s" "10s" "0s" '\x00'}
USER root
SHELL [/bin/bash -ce]
RUN |6 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis /bin/bash -ce /usr/local/bin/validate # buildkit
ARG NODE_VERSION=16
ARG YARN_VERSION=1.22
ARG NPM_VERSION=8
ARG NODE_PACKAGES=npm nodejs yarn
ENV NODE_VERSION=16 YARN_VERSION=1.22 NPM_VERSION=8 NPM_CACHE_DIR=/var/cache/.npm YARN_CACHE_FOLDER=/var/cache/.yarn NPM_CONFIG_LOGLEVEL=warn NPM_CONFIG_PREFIX=/var/cache/.npm/.npm-global NPM_CONFIG_CACHE=/var/cache/.npm/.npm-cache NPM_CONFIG_USERCONFIG=/var/cache/.npm/.npmrc NODE_PATH=/var/cache/.npm/.npm-global/lib/node_modules:/usr/local/lib/node_modules:/usr/lib/node_modules PATH=/bin:/app/vendor/bin:/app:/app/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NO_UPDATE_NOTIFIER=true NPM_WATCH_PATHS=
LABEL ooo.grey.version.node=16 ooo.grey.version.yarn=1.22 ooo.grey.version.npm=8
USER root
COPY ./fs/node/. / # buildkit
RUN |10 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis NODE_VERSION=16 YARN_VERSION=1.22 NPM_VERSION=8 NODE_PACKAGES=npm nodejs yarn /bin/bash -ce sv-fix-perms # buildkit
RUN |10 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis NODE_VERSION=16 YARN_VERSION=1.22 NPM_VERSION=8 NODE_PACKAGES=npm nodejs yarn /bin/bash -ce mkdir -p $NPM_CACHE_DIR $YARN_CACHE_FOLDER chown $SYSTEM_USER:$SYSTEM_USER $NPM_CACHE_DIR $YARN_CACHE_FOLDER apk add --no-cache $NODE_PACKAGES chmod a+w /var/cache $NPM_CACHE_DIR $YARN_CACHE_FOLDER # buildkit
USER app
RUN |10 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis NODE_VERSION=16 YARN_VERSION=1.22 NPM_VERSION=8 NODE_PACKAGES=npm nodejs yarn /bin/bash -ce npm --global cache verify # buildkit
USER root
RUN |10 BASE_PACKAGES= bash bash-completion pv bc less util-linux-misc util-linux-bash-completion bind-tools iputils net-tools git openssh-client ca-certificates wget curl tar gzip xz bzip2 cronie flock nano vim figlet ncurses runuser runit dos2unix patch NGINX_VERSION=1.20 PHP_VERSION=7.4 COMPOSER_VERSION=2.2.25 PHP_PACKAGES=php7 php7-bcmath php7-bz2 php7-calendar php7-ctype php7-curl php7-dom php7-exif php7-fileinfo php7-ftp php7-fpm php7-gd php7-gettext php7-gmp php7-iconv php7-imap php7-intl php7-json php7-ldap php7-mbstring php7-mysqli php7-mysqlnd php7-odbc php7-opcache php7-openssl php7-pcntl php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite php7-pgsql php7-phar php7-posix php7-session php7-shmop php7-simplexml php7-snmp php7-soap php7-sockets php7-sodium php7-sqlite3 php7-sysvmsg php7-sysvsem php7-sysvshm php7-tidy php7-tokenizer php7-xml php7-xmlreader php7-xmlwriter php7-xsl php7-zip php7-zlib php7-pecl-apcu php7-pecl-redis php7-pecl-msgpack php7-pecl-xdebug EXTRA_PACKAGES=nginx sqlite postgresql-client mysql-client mariadb-connector-c redis NODE_VERSION=16 YARN_VERSION=1.22 NPM_VERSION=8 NODE_PACKAGES=npm nodejs yarn /bin/bash -ce /usr/local/bin/validate # buildkit

Labels

Key Value
ooo.grey.version.alpine 3.15
ooo.grey.version.composer 2.2.25
ooo.grey.version.nginx 1.20
ooo.grey.version.node 16
ooo.grey.version.npm 8
ooo.grey.version.php 7.4
ooo.grey.version.yarn 1.22
org.opencontainers.image.authors Matt B <matt@grey.ooo>
org.opencontainers.image.description PHP 7.4 base image with Node.js installed
org.opencontainers.image.documentation https://git.grey.ooo/Grey.ooo/docker/src/branch/main/README.md
org.opencontainers.image.source https://git.grey.ooo/Grey.ooo/docker
org.opencontainers.image.url https://git.grey.ooo/Grey.ooo/docker
org.opencontainers.image.vendor Grey.ooo
Details
Container
2026-01-03 23:23:45 +00:00
0
OCI / Docker
linux/amd64
Matt B <matt@grey.ooo>
88 MiB
Versions (22) View all
latest 2026-01-03
7.4 2026-01-03
8.5 2026-01-03