├── .env ├── .github ├── dependabot.yml └── workflows │ ├── make-images.yml │ ├── make-rc.yml │ └── update-old-images.yml ├── .gitignore ├── Makefile ├── README.md ├── fpm ├── Dockerfile ├── extensions ├── fpm-pool.conf ├── install_extensions ├── os-cases └── php.ini ├── nginx ├── Dockerfile └── config │ ├── nginx.conf │ └── startScript └── scripts ├── generate-extensions-table └── update-readme /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/.env -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/make-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/.github/workflows/make-images.yml -------------------------------------------------------------------------------- /.github/workflows/make-rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/.github/workflows/make-rc.yml -------------------------------------------------------------------------------- /.github/workflows/update-old-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/.github/workflows/update-old-images.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | secrets -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/README.md -------------------------------------------------------------------------------- /fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/fpm/Dockerfile -------------------------------------------------------------------------------- /fpm/extensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/fpm/extensions -------------------------------------------------------------------------------- /fpm/fpm-pool.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/fpm/fpm-pool.conf -------------------------------------------------------------------------------- /fpm/install_extensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/fpm/install_extensions -------------------------------------------------------------------------------- /fpm/os-cases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/fpm/os-cases -------------------------------------------------------------------------------- /fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/fpm/php.ini -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/nginx/config/nginx.conf -------------------------------------------------------------------------------- /nginx/config/startScript: -------------------------------------------------------------------------------- 1 | php-fpm -D -O 2 | 3 | nginx 4 | -------------------------------------------------------------------------------- /scripts/generate-extensions-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/scripts/generate-extensions-table -------------------------------------------------------------------------------- /scripts/update-readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aronpc/php/HEAD/scripts/update-readme --------------------------------------------------------------------------------