Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
8684050d1d | |||
fa910780a3 | |||
29d84fe54f | |||
2d544e1411 | |||
95f8846e3d |
15
Dockerfile
15
Dockerfile
@ -1,20 +1,21 @@
|
|||||||
########################################################################################################################################
|
########################################################################################################################################
|
||||||
# Documentation: https://git.nickyeoman.com/4lt/phpcontainer/wiki
|
# Project: https://git.4lt.ca/4lt/phpcontainer/
|
||||||
# v2.0
|
# v4
|
||||||
#################################################################################################################################
|
#################################################################################################################################
|
||||||
|
|
||||||
# Use the PHP base image
|
# Use the PHP base image
|
||||||
FROM php:8.2.9-apache
|
# https://hub.docker.com/_/php
|
||||||
|
FROM php:8.3.9-apache
|
||||||
|
|
||||||
# Set maintainer information
|
# Set maintainer information
|
||||||
LABEL version="2"
|
LABEL version="4.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.nickyeoman.com/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 /website
|
WORKDIR /data
|
||||||
ENV APACHE_DOCUMENT_ROOT /website/public/
|
ENV APACHE_DOCUMENT_ROOT /data/public/
|
||||||
|
|
||||||
# Install required packages
|
# Install required packages
|
||||||
RUN set -eux; \
|
RUN set -eux; \
|
||||||
|
33
README.md
33
README.md
@ -1,8 +1,35 @@
|
|||||||
# 4 Lights Consulting
|
# 4 Lights Consulting
|
||||||
|
|
||||||
The apache php docker container that we use for production.
|
The apache php docker container that 4 Lights uses for production.
|
||||||
|
|
||||||
User Documentation: https://git.nickyeoman.com/4lt/phpcontainer/wiki
|
|
||||||
|
|
||||||
Dockerhub: https://hub.docker.com/r/4lights/phpcontainer
|
Dockerhub: https://hub.docker.com/r/4lights/phpcontainer
|
||||||
|
|
||||||
|
## How to update
|
||||||
|
|
||||||
|
Clone the project: ```git clone git@git.4lt.ca:4lt/phpcontainer.git```
|
||||||
|
|
||||||
|
Update the Dockerfile.
|
||||||
|
|
||||||
|
Build (be sure to change the version number)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
podman buildx build --no-cache -t 4lights/phpcontainer:v5 -t 4lights/phpcontainer:latest --load .
|
||||||
|
podman login
|
||||||
|
podman push 4lights/phpcontainer:v4
|
||||||
|
podman push 4lights/phpcontainer:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
# References And Notes
|
||||||
|
|
||||||
|
* [Stack Overflow IMAP features](https://stackoverflow.com/questions/49854767/docker-php7-2-fpm-cant-install-imap-module)
|
||||||
|
* Joomla base used: f9a16bcbd8/4.3/php8.1/apache/Dockerfile
|
||||||
|
|
||||||
|
## Supported Software
|
||||||
|
|
||||||
|
* Joomla
|
||||||
|
* 4 Lights PHP Framework
|
||||||
|
* Matomo
|
||||||
|
|
||||||
|
## Samples included in Repo
|
||||||
|
|
||||||
|
There is a docker-compose, env-sample and php.ini included as sample data.
|
36
docker-compose.yml
Normal file
36
docker-compose.yml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
# Sample Docker Compose File
|
||||||
|
|
||||||
|
version: "3.3"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
db:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external:
|
||||||
|
name: ${NETWORKNAME}
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: mariadb:latest
|
||||||
|
restart: always
|
||||||
|
container_name: "${DBHOST}"
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
|
||||||
|
MYSQL_PASSWORD: ${DBPASSWORD}
|
||||||
|
MYSQL_DATABASE: ${DB}
|
||||||
|
MYSQL_USER: ${DBUSER}
|
||||||
|
volumes:
|
||||||
|
- "db:/var/lib/mysql"
|
||||||
|
|
||||||
|
php-app:
|
||||||
|
container_name: "${DOCKERNAME}"
|
||||||
|
image: "4lights/phpcontainer:latest"
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- "./:/data"
|
||||||
|
- ./php.ini:/usr/local/etc/php/php.ini
|
||||||
|
ports:
|
||||||
|
- "${DOCKERPORT}:80"
|
8
env-sample
Normal file
8
env-sample
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
NETWORKNAME=PROXY_NETWORK
|
||||||
|
DBHOST=DB_HOST_NAME
|
||||||
|
MYSQL_ROOT_PASSWORD=ChangeMe
|
||||||
|
DBPASSWORD=ChangeMeAlso
|
||||||
|
DB=DATABASENAME
|
||||||
|
DBUSER=DBUSERNAME
|
||||||
|
DOCKERNAME=Container_name
|
||||||
|
DOCKERPORT=8000
|
128
php.ini
Normal file
128
php.ini
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
[PHP]
|
||||||
|
engine = On
|
||||||
|
short_open_tag = Off
|
||||||
|
precision = 14
|
||||||
|
output_buffering = 4096
|
||||||
|
zlib.output_compression = Off
|
||||||
|
implicit_flush = Off
|
||||||
|
unserialize_callback_func =
|
||||||
|
serialize_precision = -1
|
||||||
|
disable_functions =
|
||||||
|
disable_classes =
|
||||||
|
zend.enable_gc = On
|
||||||
|
zend.exception_ignore_args = On
|
||||||
|
zend.exception_string_param_max_len = 0
|
||||||
|
expose_php = On
|
||||||
|
max_execution_time = 30
|
||||||
|
max_input_time = 60
|
||||||
|
memory_limit = 128M
|
||||||
|
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
|
||||||
|
display_errors = Off
|
||||||
|
display_startup_errors = Off
|
||||||
|
log_errors = On
|
||||||
|
log_errors_max_len = 1024
|
||||||
|
ignore_repeated_errors = Off
|
||||||
|
ignore_repeated_source = Off
|
||||||
|
report_memleaks = On
|
||||||
|
variables_order = "GPCS"
|
||||||
|
request_order = "GP"
|
||||||
|
register_argc_argv = Off
|
||||||
|
auto_globals_jit = On
|
||||||
|
post_max_size = 800M
|
||||||
|
auto_prepend_file =
|
||||||
|
auto_append_file =
|
||||||
|
default_mimetype = "text/html"
|
||||||
|
default_charset = "UTF-8"
|
||||||
|
doc_root =
|
||||||
|
user_dir =
|
||||||
|
enable_dl = Off
|
||||||
|
file_uploads = On
|
||||||
|
upload_max_filesize = 400M
|
||||||
|
max_file_uploads = 20
|
||||||
|
allow_url_fopen = On
|
||||||
|
allow_url_include = Off
|
||||||
|
default_socket_timeout = 60
|
||||||
|
|
||||||
|
[CLI Server]
|
||||||
|
cli_server.color = On
|
||||||
|
|
||||||
|
[Pdo_mysql]
|
||||||
|
pdo_mysql.default_socket=
|
||||||
|
|
||||||
|
[mail function]
|
||||||
|
SMTP = localhost
|
||||||
|
smtp_port = 25
|
||||||
|
mail.add_x_header = Off
|
||||||
|
|
||||||
|
[ODBC]
|
||||||
|
odbc.allow_persistent = On
|
||||||
|
odbc.check_persistent = On
|
||||||
|
odbc.max_persistent = -1
|
||||||
|
odbc.max_links = -1
|
||||||
|
odbc.defaultlrl = 4096
|
||||||
|
odbc.defaultbinmode = 1
|
||||||
|
|
||||||
|
[MySQLi]
|
||||||
|
mysqli.max_persistent = -1
|
||||||
|
mysqli.allow_persistent = On
|
||||||
|
mysqli.max_links = -1
|
||||||
|
mysqli.default_port = 3306
|
||||||
|
mysqli.default_socket =
|
||||||
|
mysqli.default_host =
|
||||||
|
mysqli.default_user =
|
||||||
|
mysqli.default_pw =
|
||||||
|
mysqli.reconnect = Off
|
||||||
|
|
||||||
|
[mysqlnd]
|
||||||
|
mysqlnd.collect_statistics = On
|
||||||
|
mysqlnd.collect_memory_statistics = Off
|
||||||
|
|
||||||
|
[PostgreSQL]
|
||||||
|
pgsql.allow_persistent = On
|
||||||
|
pgsql.auto_reset_persistent = Off
|
||||||
|
pgsql.max_persistent = -1
|
||||||
|
pgsql.max_links = -1
|
||||||
|
pgsql.ignore_notice = 0
|
||||||
|
pgsql.log_notice = 0
|
||||||
|
|
||||||
|
[bcmath]
|
||||||
|
bcmath.scale = 0
|
||||||
|
|
||||||
|
[Session]
|
||||||
|
session.save_handler = files
|
||||||
|
session.use_strict_mode = 0
|
||||||
|
session.use_cookies = 1
|
||||||
|
session.use_only_cookies = 1
|
||||||
|
session.name = PHPSESSID
|
||||||
|
session.auto_start = 0
|
||||||
|
session.cookie_lifetime = 0
|
||||||
|
session.cookie_path = /
|
||||||
|
session.cookie_domain =
|
||||||
|
session.cookie_httponly =
|
||||||
|
session.cookie_samesite =
|
||||||
|
session.serialize_handler = php
|
||||||
|
session.gc_probability = 1
|
||||||
|
session.gc_divisor = 1000
|
||||||
|
session.gc_maxlifetime = 1440
|
||||||
|
session.referer_check =
|
||||||
|
session.cache_limiter = nocache
|
||||||
|
session.cache_expire = 180
|
||||||
|
session.use_trans_sid = 0
|
||||||
|
session.sid_length = 26
|
||||||
|
session.trans_sid_tags = "a=href,area=href,frame=src,form="
|
||||||
|
session.sid_bits_per_character = 5
|
||||||
|
|
||||||
|
[Assertion]
|
||||||
|
zend.assertions = -1
|
||||||
|
|
||||||
|
[Tidy]
|
||||||
|
tidy.clean_output = Off
|
||||||
|
|
||||||
|
[soap]
|
||||||
|
soap.wsdl_cache_enabled=1
|
||||||
|
soap.wsdl_cache_dir="/tmp"
|
||||||
|
soap.wsdl_cache_ttl=86400
|
||||||
|
soap.wsdl_cache_limit = 5
|
||||||
|
|
||||||
|
[ldap]
|
||||||
|
ldap.max_links = -1
|
Loading…
Reference in New Issue
Block a user