├── docker-compose.yml ├── hosts └── hello-dev.conf ├── images └── php │ ├── Dockerfile │ └── php.ini ├── logs └── .gitignore ├── mysql └── .gitignore ├── readme.MD └── www └── hello.dev └── index.php /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPtoday-ru/docker-local-conf/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hosts/hello-dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPtoday-ru/docker-local-conf/HEAD/hosts/hello-dev.conf -------------------------------------------------------------------------------- /images/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPtoday-ru/docker-local-conf/HEAD/images/php/Dockerfile -------------------------------------------------------------------------------- /images/php/php.ini: -------------------------------------------------------------------------------- 1 | display_errors = 1 2 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /mysql/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPtoday-ru/docker-local-conf/HEAD/readme.MD -------------------------------------------------------------------------------- /www/hello.dev/index.php: -------------------------------------------------------------------------------- 1 |