├── .env-example ├── .gitignore ├── README.md ├── aliases └── php71 │ └── bash.bashrc ├── docker-compose.yml ├── hosts ├── first.conf └── two.conf ├── images ├── hub │ └── Dockerfile ├── hub70 │ └── Dockerfile └── php71 │ ├── Dockerfile │ └── php.ini ├── logs └── .gitignore ├── mysql └── data │ └── .gitignore ├── remove.sh ├── up.sh └── www ├── .gitignore ├── first.loc ├── http.http └── index.php └── two.loc └── index.php /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | .env 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/README.md -------------------------------------------------------------------------------- /aliases/php71/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/aliases/php71/bash.bashrc -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hosts/first.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/hosts/first.conf -------------------------------------------------------------------------------- /hosts/two.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/hosts/two.conf -------------------------------------------------------------------------------- /images/hub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/images/hub/Dockerfile -------------------------------------------------------------------------------- /images/hub70/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/images/hub70/Dockerfile -------------------------------------------------------------------------------- /images/php71/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/images/php71/Dockerfile -------------------------------------------------------------------------------- /images/php71/php.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /mysql/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ale10257/docker-with-php-xdebug/HEAD/remove.sh -------------------------------------------------------------------------------- /up.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose up 4 | -------------------------------------------------------------------------------- /www/.gitignore: -------------------------------------------------------------------------------- 1 | .composer/ 2 | .bash_history 3 | -------------------------------------------------------------------------------- /www/first.loc/http.http: -------------------------------------------------------------------------------- 1 | POST http://two.loc:8080/ 2 | Content-Type: application/json 3 | 4 | {} 5 | 6 | ### -------------------------------------------------------------------------------- /www/first.loc/index.php: -------------------------------------------------------------------------------- 1 |