├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── workflows │ ├── README.md │ └── build-php-images.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── apache ├── Dockerfile └── sites │ ├── localhost.conf │ ├── localhost │ ├── php56.conf │ ├── php70.conf │ ├── php71.conf │ ├── php72.conf │ ├── php73.conf │ ├── php74.conf │ ├── php80.conf │ ├── php81.conf │ ├── php82.conf │ ├── php83.conf │ ├── php84.conf │ ├── php85.conf │ └── zzz-default.conf │ └── pub.localhost │ ├── php56.conf │ ├── php70.conf │ ├── php71.conf │ ├── php72.conf │ ├── php73.conf │ ├── php74.conf │ ├── php80.conf │ ├── php81.conf │ ├── php82.conf │ ├── php83.conf │ ├── php84.conf │ ├── php85.conf │ └── zzz-default.conf ├── data └── .gitkeep ├── docker-compose.yml ├── docs ├── apache-web-server.md ├── blackfire-php-profiler.md ├── general-faq.md ├── logo.jpg ├── mailpit-smtp.md ├── mariadb-database.md ├── meilisearch.md ├── memcached.md ├── nodejs.md ├── pcov.md ├── php.md ├── typesense.md ├── valkey.md └── xdebug.md ├── mysql ├── .dockerignore ├── Dockerfile └── data │ └── .gitkeep ├── opt ├── blackfire.yml ├── custom │ └── .gitkeep ├── meilisearch.yml ├── memcached.yml ├── php56.yml ├── php70.yml ├── php71.yml ├── php72.yml ├── php73.yml ├── php74.yml ├── php80.yml ├── php81.yml ├── php82.yml ├── php83.yml ├── php84.yml ├── php85.yml ├── phpmyadmin.yml ├── typesense.yml └── valkey.yml └── php ├── 56 └── Dockerfile ├── 70 └── Dockerfile ├── 71 └── Dockerfile ├── 72 └── Dockerfile ├── 73 └── Dockerfile ├── 74 └── Dockerfile ├── 80 └── Dockerfile ├── 81 └── Dockerfile ├── 82 └── Dockerfile ├── 83 └── Dockerfile ├── 84 └── Dockerfile ├── 85 └── Dockerfile ├── conf └── .gitkeep └── src ├── 56 └── Dockerfile ├── 70 └── Dockerfile ├── 71 └── Dockerfile ├── 72 └── Dockerfile ├── 73 └── Dockerfile ├── 74 └── Dockerfile ├── 80 └── Dockerfile ├── 81 └── Dockerfile ├── 82 └── Dockerfile ├── 83 └── Dockerfile ├── 84 └── Dockerfile ├── 85 └── Dockerfile ├── README.md ├── change_debug_tool.sh └── conf ├── custom.ini ├── socat.conf └── supervisord.conf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/build-php-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/.github/workflows/build-php-images.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/README.md -------------------------------------------------------------------------------- /apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/Dockerfile -------------------------------------------------------------------------------- /apache/sites/localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php56.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php56.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php70.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php70.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php71.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php71.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php72.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php72.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php73.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php73.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php74.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php74.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php80.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php81.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php81.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php82.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php82.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php83.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php83.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php84.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php84.conf -------------------------------------------------------------------------------- /apache/sites/localhost/php85.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/php85.conf -------------------------------------------------------------------------------- /apache/sites/localhost/zzz-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/localhost/zzz-default.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php56.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php56.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php70.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php70.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php71.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php71.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php72.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php72.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php73.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php73.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php74.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php74.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php80.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php81.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php81.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php82.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php82.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php83.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php83.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php84.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php84.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/php85.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/php85.conf -------------------------------------------------------------------------------- /apache/sites/pub.localhost/zzz-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/apache/sites/pub.localhost/zzz-default.conf -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/apache-web-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/apache-web-server.md -------------------------------------------------------------------------------- /docs/blackfire-php-profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/blackfire-php-profiler.md -------------------------------------------------------------------------------- /docs/general-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/general-faq.md -------------------------------------------------------------------------------- /docs/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/logo.jpg -------------------------------------------------------------------------------- /docs/mailpit-smtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/mailpit-smtp.md -------------------------------------------------------------------------------- /docs/mariadb-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/mariadb-database.md -------------------------------------------------------------------------------- /docs/meilisearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/meilisearch.md -------------------------------------------------------------------------------- /docs/memcached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/memcached.md -------------------------------------------------------------------------------- /docs/nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/nodejs.md -------------------------------------------------------------------------------- /docs/pcov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/pcov.md -------------------------------------------------------------------------------- /docs/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/php.md -------------------------------------------------------------------------------- /docs/typesense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/typesense.md -------------------------------------------------------------------------------- /docs/valkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/valkey.md -------------------------------------------------------------------------------- /docs/xdebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/docs/xdebug.md -------------------------------------------------------------------------------- /mysql/.dockerignore: -------------------------------------------------------------------------------- 1 | /data 2 | -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /mysql/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opt/blackfire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/blackfire.yml -------------------------------------------------------------------------------- /opt/custom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opt/meilisearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/meilisearch.yml -------------------------------------------------------------------------------- /opt/memcached.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/memcached.yml -------------------------------------------------------------------------------- /opt/php56.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php56.yml -------------------------------------------------------------------------------- /opt/php70.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php70.yml -------------------------------------------------------------------------------- /opt/php71.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php71.yml -------------------------------------------------------------------------------- /opt/php72.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php72.yml -------------------------------------------------------------------------------- /opt/php73.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php73.yml -------------------------------------------------------------------------------- /opt/php74.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php74.yml -------------------------------------------------------------------------------- /opt/php80.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php80.yml -------------------------------------------------------------------------------- /opt/php81.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php81.yml -------------------------------------------------------------------------------- /opt/php82.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php82.yml -------------------------------------------------------------------------------- /opt/php83.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php83.yml -------------------------------------------------------------------------------- /opt/php84.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php84.yml -------------------------------------------------------------------------------- /opt/php85.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/php85.yml -------------------------------------------------------------------------------- /opt/phpmyadmin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/phpmyadmin.yml -------------------------------------------------------------------------------- /opt/typesense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/typesense.yml -------------------------------------------------------------------------------- /opt/valkey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/opt/valkey.yml -------------------------------------------------------------------------------- /php/56/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/56/Dockerfile -------------------------------------------------------------------------------- /php/70/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/70/Dockerfile -------------------------------------------------------------------------------- /php/71/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/71/Dockerfile -------------------------------------------------------------------------------- /php/72/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/72/Dockerfile -------------------------------------------------------------------------------- /php/73/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/73/Dockerfile -------------------------------------------------------------------------------- /php/74/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/74/Dockerfile -------------------------------------------------------------------------------- /php/80/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/80/Dockerfile -------------------------------------------------------------------------------- /php/81/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/81/Dockerfile -------------------------------------------------------------------------------- /php/82/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/82/Dockerfile -------------------------------------------------------------------------------- /php/83/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/83/Dockerfile -------------------------------------------------------------------------------- /php/84/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/84/Dockerfile -------------------------------------------------------------------------------- /php/85/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/85/Dockerfile -------------------------------------------------------------------------------- /php/conf/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/src/56/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/56/Dockerfile -------------------------------------------------------------------------------- /php/src/70/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/70/Dockerfile -------------------------------------------------------------------------------- /php/src/71/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/71/Dockerfile -------------------------------------------------------------------------------- /php/src/72/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/72/Dockerfile -------------------------------------------------------------------------------- /php/src/73/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/73/Dockerfile -------------------------------------------------------------------------------- /php/src/74/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/74/Dockerfile -------------------------------------------------------------------------------- /php/src/80/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/80/Dockerfile -------------------------------------------------------------------------------- /php/src/81/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/81/Dockerfile -------------------------------------------------------------------------------- /php/src/82/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/82/Dockerfile -------------------------------------------------------------------------------- /php/src/83/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/83/Dockerfile -------------------------------------------------------------------------------- /php/src/84/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/84/Dockerfile -------------------------------------------------------------------------------- /php/src/85/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/85/Dockerfile -------------------------------------------------------------------------------- /php/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/README.md -------------------------------------------------------------------------------- /php/src/change_debug_tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/change_debug_tool.sh -------------------------------------------------------------------------------- /php/src/conf/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/conf/custom.ini -------------------------------------------------------------------------------- /php/src/conf/socat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/conf/socat.conf -------------------------------------------------------------------------------- /php/src/conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvtl/docker-dev/HEAD/php/src/conf/supervisord.conf --------------------------------------------------------------------------------