├── .github └── workflows │ └── docker.yml ├── 5.6-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 5.6 ├── Dockerfile └── conf.d │ └── custom.ini ├── 7.0-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 7.0 ├── Dockerfile └── conf.d │ └── custom.ini ├── 7.1-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 7.1 ├── Dockerfile └── conf.d │ └── custom.ini ├── 7.2-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 7.2 ├── Dockerfile └── conf.d │ └── custom.ini ├── 7.3-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 7.3 ├── Dockerfile └── conf.d │ └── custom.ini ├── 7.4-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 7.4 ├── Dockerfile └── conf.d │ └── custom.ini ├── 8.0-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 8.0 ├── Dockerfile └── conf.d │ └── custom.ini ├── 8.1-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 8.1 ├── Dockerfile └── conf.d │ └── custom.ini ├── 8.2-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 8.2 ├── Dockerfile └── conf.d │ └── custom.ini ├── 8.3-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 8.3 ├── Dockerfile └── conf.d │ └── custom.ini ├── 8.4-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 8.4 ├── Dockerfile └── conf.d │ └── custom.ini ├── 8.5-fpm ├── Dockerfile ├── conf.d │ └── custom.ini └── fpm │ └── php-fpm.conf ├── 8.5 ├── Dockerfile └── conf.d │ └── custom.ini ├── LICENSE ├── Makefile └── README.md /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /5.6-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/5.6-fpm/Dockerfile -------------------------------------------------------------------------------- /5.6-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/5.6-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /5.6-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/5.6-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /5.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/5.6/Dockerfile -------------------------------------------------------------------------------- /5.6/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/5.6/conf.d/custom.ini -------------------------------------------------------------------------------- /7.0-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.0-fpm/Dockerfile -------------------------------------------------------------------------------- /7.0-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.0-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /7.0-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.0-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /7.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.0/Dockerfile -------------------------------------------------------------------------------- /7.0/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.0/conf.d/custom.ini -------------------------------------------------------------------------------- /7.1-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.1-fpm/Dockerfile -------------------------------------------------------------------------------- /7.1-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.1-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /7.1-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.1-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.1/Dockerfile -------------------------------------------------------------------------------- /7.1/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.1/conf.d/custom.ini -------------------------------------------------------------------------------- /7.2-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.2-fpm/Dockerfile -------------------------------------------------------------------------------- /7.2-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.2-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /7.2-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.2-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /7.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.2/Dockerfile -------------------------------------------------------------------------------- /7.2/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.2/conf.d/custom.ini -------------------------------------------------------------------------------- /7.3-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.3-fpm/Dockerfile -------------------------------------------------------------------------------- /7.3-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.3-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /7.3-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.3-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /7.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.3/Dockerfile -------------------------------------------------------------------------------- /7.3/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.3/conf.d/custom.ini -------------------------------------------------------------------------------- /7.4-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.4-fpm/Dockerfile -------------------------------------------------------------------------------- /7.4-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.4-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /7.4-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.4-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /7.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.4/Dockerfile -------------------------------------------------------------------------------- /7.4/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/7.4/conf.d/custom.ini -------------------------------------------------------------------------------- /8.0-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.0-fpm/Dockerfile -------------------------------------------------------------------------------- /8.0-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.0-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /8.0-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.0-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /8.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.0/Dockerfile -------------------------------------------------------------------------------- /8.0/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.0/conf.d/custom.ini -------------------------------------------------------------------------------- /8.1-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.1-fpm/Dockerfile -------------------------------------------------------------------------------- /8.1-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.1-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /8.1-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.1-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.1/Dockerfile -------------------------------------------------------------------------------- /8.1/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.1/conf.d/custom.ini -------------------------------------------------------------------------------- /8.2-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.2-fpm/Dockerfile -------------------------------------------------------------------------------- /8.2-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.2-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /8.2-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.2-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /8.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.2/Dockerfile -------------------------------------------------------------------------------- /8.2/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.2/conf.d/custom.ini -------------------------------------------------------------------------------- /8.3-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.3-fpm/Dockerfile -------------------------------------------------------------------------------- /8.3-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.3-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /8.3-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.3-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /8.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.3/Dockerfile -------------------------------------------------------------------------------- /8.3/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.3/conf.d/custom.ini -------------------------------------------------------------------------------- /8.4-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.4-fpm/Dockerfile -------------------------------------------------------------------------------- /8.4-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.4-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /8.4-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.4-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /8.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.4/Dockerfile -------------------------------------------------------------------------------- /8.4/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.4/conf.d/custom.ini -------------------------------------------------------------------------------- /8.5-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.5-fpm/Dockerfile -------------------------------------------------------------------------------- /8.5-fpm/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.5-fpm/conf.d/custom.ini -------------------------------------------------------------------------------- /8.5-fpm/fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.5-fpm/fpm/php-fpm.conf -------------------------------------------------------------------------------- /8.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.5/Dockerfile -------------------------------------------------------------------------------- /8.5/conf.d/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/8.5/conf.d/custom.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockette/php/HEAD/README.md --------------------------------------------------------------------------------