├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── .travis │ ├── build.sh │ ├── push.sh │ ├── test.sh │ └── update_docker.sh └── php ├── Dockerfile-7.1 ├── Dockerfile-7.2 ├── Dockerfile-7.3 ├── Dockerfile-7.4 ├── Dockerfile-8.0 ├── Dockerfile-8.1 ├── Dockerfile-node10 ├── Dockerfile-node12 ├── Dockerfile-node14 ├── Dockerfile-node16 ├── conf.d ├── blackfire.ini ├── php.ini ├── xdebug.ini └── xdebug2.ini └── scripts ├── docker-entrypoint.sh └── wait_for_db.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | volumes 3 | 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/README.md -------------------------------------------------------------------------------- /bin/.travis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/bin/.travis/build.sh -------------------------------------------------------------------------------- /bin/.travis/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/bin/.travis/push.sh -------------------------------------------------------------------------------- /bin/.travis/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/bin/.travis/test.sh -------------------------------------------------------------------------------- /bin/.travis/update_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/bin/.travis/update_docker.sh -------------------------------------------------------------------------------- /php/Dockerfile-7.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-7.1 -------------------------------------------------------------------------------- /php/Dockerfile-7.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-7.2 -------------------------------------------------------------------------------- /php/Dockerfile-7.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-7.3 -------------------------------------------------------------------------------- /php/Dockerfile-7.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-7.4 -------------------------------------------------------------------------------- /php/Dockerfile-8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-8.0 -------------------------------------------------------------------------------- /php/Dockerfile-8.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-8.1 -------------------------------------------------------------------------------- /php/Dockerfile-node10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-node10 -------------------------------------------------------------------------------- /php/Dockerfile-node12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-node12 -------------------------------------------------------------------------------- /php/Dockerfile-node14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-node14 -------------------------------------------------------------------------------- /php/Dockerfile-node16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/Dockerfile-node16 -------------------------------------------------------------------------------- /php/conf.d/blackfire.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/conf.d/blackfire.ini -------------------------------------------------------------------------------- /php/conf.d/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/conf.d/php.ini -------------------------------------------------------------------------------- /php/conf.d/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/conf.d/xdebug.ini -------------------------------------------------------------------------------- /php/conf.d/xdebug2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/conf.d/xdebug2.ini -------------------------------------------------------------------------------- /php/scripts/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/scripts/docker-entrypoint.sh -------------------------------------------------------------------------------- /php/scripts/wait_for_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/docker-php/HEAD/php/scripts/wait_for_db.php --------------------------------------------------------------------------------