├── .editorconfig ├── .gitattributes ├── .github ├── files │ └── test_heif.php └── workflows │ ├── cla-check.yaml │ ├── release.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── README.md ├── SECURITY.md ├── doc └── xdebug.png └── files ├── build-cleanup.sh ├── build-install.sh ├── conf ├── php-fpm │ └── php-fpm.conf ├── php │ └── php.ini └── supervisord │ └── supervisord.conf └── entrypoint.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | supervisord.conf linguist-language=ini 2 | -------------------------------------------------------------------------------- /.github/files/test_heif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/.github/files/test_heif.php -------------------------------------------------------------------------------- /.github/workflows/cla-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/.github/workflows/cla-check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /doc/xdebug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/doc/xdebug.png -------------------------------------------------------------------------------- /files/build-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/files/build-cleanup.sh -------------------------------------------------------------------------------- /files/build-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/files/build-install.sh -------------------------------------------------------------------------------- /files/conf/php-fpm/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/files/conf/php-fpm/php-fpm.conf -------------------------------------------------------------------------------- /files/conf/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/files/conf/php/php.ini -------------------------------------------------------------------------------- /files/conf/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/files/conf/supervisord/supervisord.conf -------------------------------------------------------------------------------- /files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pimcore/docker/HEAD/files/entrypoint.sh --------------------------------------------------------------------------------