This commit is contained in:
Nick Yeoman 2025-01-14 17:05:44 -08:00
parent 8684050d1d
commit 6d154446d3
2 changed files with 51 additions and 137 deletions

View File

@ -1,149 +1,66 @@
########################################################################################################################################
# Project: https://git.4lt.ca/4lt/phpcontainer/
# v4
#################################################################################################################################
# Use the PHP base image # Use the PHP base image
# https://hub.docker.com/_/php FROM php:8.4.2-apache
FROM php:8.3.9-apache
# Set maintainer information # Set maintainer information
LABEL version="4.0" LABEL version="5.0.0"
LABEL maintainer="4 Lights Consulting <info@4lt.ca>" LABEL maintainer="4 Lights Consulting <info@4lt.ca>"
LABEL description="Production-ready PHP Apache container" LABEL description="Production-ready PHP Apache container"
LABEL org.label-schema.vcs-url="https://git.4lt.ca/4lt/phpcontainer" LABEL org.label-schema.vcs-url="https://git.4lt.ca/4lt/phpcontainer"
# Set working directory and Apache document root # Set working directory and Apache document root
WORKDIR /data WORKDIR /data
ENV APACHE_DOCUMENT_ROOT /data/public/ ENV APACHE_DOCUMENT_ROOT=/data/public/
# Install required packages # Update and install required packages
RUN set -eux; \ RUN set -eux; \
apt-get update && \
apt-get install -y --no-install-recommends ghostscript;
# IMAP
RUN apt-get install -y libc-client-dev libkrb5-dev libssl-dev;
RUN docker-php-ext-configure imap --with-kerberos --with-imap-ssl
RUN docker-php-ext-install imap
# Install PHP extensions
RUN set -ex; \
\
savedAptMark="$(apt-mark showmanual)"; \
\
apt-get update && \ apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
ghostscript \
libssl-dev \
libbz2-dev \ libbz2-dev \
libgmp-dev \
libicu-dev \
libfreetype6-dev \ libfreetype6-dev \
libjpeg-dev \ libjpeg-dev \
libldap2-dev \
libmemcached-dev \
libmagickwand-dev \
libpq-dev \
libpng-dev \ libpng-dev \
libwebp-dev \ libwebp-dev \
libzip-dev \ libzip-dev && \
; \ rm -rf /var/lib/apt/lists/*
\
docker-php-ext-configure gd \ # Configure and install essential PHP extensions
--with-freetype \ RUN set -ex; \
--with-jpeg \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
--with-webp \
; \
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
docker-php-ext-configure intl; \
docker-php-ext-install -j "$(nproc)" \ docker-php-ext-install -j "$(nproc)" \
bz2 \ bz2 \
bcmath \
exif \
gd \ gd \
gmp \
intl \
ldap \
mysqli \ mysqli \
pdo_mysql \ pdo_mysql \
pdo_pgsql \ zip
pgsql \
zip \
; \
pecl install imagick-3.6.0 && \
docker-php-ext-enable imagick && \
rm -r /tmp/pear; \
\
out="$(php -r 'exit(0);')"; \
[ -z "$out" ]; \
err="$(php -r 'exit(0);' 3>&1 1>&2 2>&3)"; \
[ -z "$err" ]; \
\
extDir="$(php -r 'echo ini_get("extension_dir");')"; \
[ -d "$extDir" ]; \
\
pecl install APCu-5.1.21 && \
pecl install memcached-3.2.0 && \
pecl install redis-5.3.7 && \
\
docker-php-ext-enable \
apcu \
memcached \
redis && \
rm -r /tmp/pear; \
\
apt-mark auto '.*' > /dev/null && \
apt-mark manual $savedAptMark && \
ldd "$extDir"/*.so | awk '/=>/ { print $3 }' | sort -u | xargs -r dpkg-query -S | cut -d: -f1 | sort -u | xargs -rt apt-mark manual; \
\
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && \
rm -rf /var/lib/apt/lists/* && \
! { ldd "$extDir"/*.so | grep 'not found'; } && \
err="$(php --version 3>&1 1>&2 2>&3)"; \
[ -z "$err" ]
# Set recommended PHP.ini settings # Set recommended PHP.ini settings
RUN set -eux; \ RUN set -eux; \
docker-php-ext-enable opcache; \ echo 'opcache.memory_consumption=128' > /usr/local/etc/php/conf.d/opcache-recommended.ini; \
{ \ echo 'opcache.interned_strings_buffer=8' >> /usr/local/etc/php/conf.d/opcache-recommended.ini; \
echo 'opcache.memory_consumption=128'; \ echo 'opcache.max_accelerated_files=4000' >> /usr/local/etc/php/conf.d/opcache-recommended.ini; \
echo 'opcache.interned_strings_buffer=8'; \ echo 'opcache.revalidate_freq=2' >> /usr/local/etc/php/conf.d/opcache-recommended.ini; \
echo 'opcache.max_accelerated_files=4000'; \ echo 'opcache.fast_shutdown=1' >> /usr/local/etc/php/conf.d/opcache-recommended.ini; \
echo 'opcache.revalidate_freq=2'; \ echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR' > /usr/local/etc/php/conf.d/error-logging.ini; \
echo 'opcache.fast_shutdown=1'; \ echo 'display_errors = Off' >> /usr/local/etc/php/conf.d/error-logging.ini; \
} > /usr/local/etc/php/conf.d/opcache-recommended.ini echo 'log_errors = On' >> /usr/local/etc/php/conf.d/error-logging.ini; \
echo 'error_log = /dev/stderr' >> /usr/local/etc/php/conf.d/error-logging.ini
# Set recommended error logging
RUN { \
echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; \
echo 'display_errors = Off'; \
echo 'display_startup_errors = Off'; \
echo 'log_errors = On'; \
echo 'error_log = /dev/stderr'; \
echo 'log_errors_max_len = 1024'; \
echo 'ignore_repeated_errors = On'; \
echo 'ignore_repeated_source = Off'; \
echo 'html_errors = Off'; \
} > /usr/local/etc/php/conf.d/error-logging.ini
# Enable Apache modules and configure RemoteIP # Enable Apache modules and configure RemoteIP
RUN set -eux; \ RUN set -eux; \
a2enmod expires headers rewrite remoteip socache_shmcb ssl && \ a2enmod expires headers rewrite remoteip socache_shmcb ssl; \
{ \ echo 'RemoteIPHeader X-Forwarded-For' > /etc/apache2/conf-available/remoteip.conf; \
echo 'RemoteIPHeader X-Forwarded-For'; \ echo 'RemoteIPTrustedProxy 10.0.0.0/8' >> /etc/apache2/conf-available/remoteip.conf; \
echo 'RemoteIPTrustedProxy 10.0.0.0/8'; \ echo 'RemoteIPTrustedProxy 172.16.0.0/12' >> /etc/apache2/conf-available/remoteip.conf; \
echo 'RemoteIPTrustedProxy 172.16.0.0/12'; \ echo 'RemoteIPTrustedProxy 192.168.0.0/16' >> /etc/apache2/conf-available/remoteip.conf; \
echo 'RemoteIPTrustedProxy 192.168.0.0/16'; \
echo 'RemoteIPTrustedProxy 169.254.0.0/16'; \
echo 'RemoteIPTrustedProxy 127.0.0.0/8'; \
} > /etc/apache2/conf-available/remoteip.conf; \
a2enconf remoteip; \ a2enconf remoteip; \
find /etc/apache2 -type f -name '*.conf' -exec sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' '{}' + sed -ri 's/([[:space:]]*LogFormat[[:space:]]+"[^"]*)%h([^"]*")/\1%a\2/g' /etc/apache2/*.conf
# More Apache settings # Configure Apache document root
RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf; \
RUN sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf echo "ServerName localhost" >> /etc/apache2/apache2.conf
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
# Expose port and set command
EXPOSE 80 EXPOSE 80
CMD ["apache2-foreground"] CMD ["apache2-foreground"]

View File

@ -6,17 +6,16 @@ Dockerhub: https://hub.docker.com/r/4lights/phpcontainer
## How to update ## How to update
Clone the project: ```git clone git@git.4lt.ca:4lt/phpcontainer.git``` 1. Clone the project: ```git clone git@git.4lt.ca:4lt/phpcontainer.git```
2. Update the Dockerfile.
Update the Dockerfile. 3. Build (be sure to change the version number)
Build (be sure to change the version number)
```bash ```bash
podman buildx build --no-cache -t 4lights/phpcontainer:v5 -t 4lights/phpcontainer:latest --load . sudo su
podman login docker buildx build --no-cache -t 4lights/phpcontainer:5.0.0 -t 4lights/phpcontainer:latest --load .
podman push 4lights/phpcontainer:v4 docker login
podman push 4lights/phpcontainer:latest docker push 4lights/phpcontainer:5.0.0
docker push 4lights/phpcontainer:latest
``` ```
# References And Notes # References And Notes
@ -26,9 +25,7 @@ podman push 4lights/phpcontainer:latest
## Supported Software ## Supported Software
* Joomla
* 4 Lights PHP Framework * 4 Lights PHP Framework
* Matomo
## Samples included in Repo ## Samples included in Repo