├── .env-example ├── .gitignore ├── .ssh └── .gitkeep ├── README.md ├── docker-compose.yml ├── mongo ├── configdb │ └── mongo.conf └── db │ └── .gitkeep ├── mysql-5.7 ├── conf.d │ └── config-file.cnf ├── data │ └── .gitkeep └── dump │ └── .gitkeep ├── mysql-8 ├── conf.d │ └── config-file.cnf ├── data │ └── .gitkeep ├── dump │ └── .gitkeep └── logs │ └── slow.log ├── nginx ├── conf.d │ ├── default.conf │ └── vhost.conf └── logs │ └── .gitkeep ├── php-7-workspace └── Dockerfile ├── php-8-workspace └── Dockerfile ├── php-ini ├── 7.1 │ └── php.ini └── 7.3 │ └── php.ini ├── php-workers ├── 7.1 │ └── supervisor.d │ │ └── .gitkeep └── 7.3 │ └── supervisor.d │ └── .gitkeep ├── postgres ├── .gitkeep ├── data │ └── .gitkeep └── dump │ └── .gitkeep ├── projects └── .gitkeep └── redis ├── conf └── .gitkeep └── data └── .gitkeep /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/.gitignore -------------------------------------------------------------------------------- /.ssh/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /mongo/configdb/mongo.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongo/db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.7/conf.d/config-file.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/mysql-5.7/conf.d/config-file.cnf -------------------------------------------------------------------------------- /mysql-5.7/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.7/dump/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-8/conf.d/config-file.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/mysql-8/conf.d/config-file.cnf -------------------------------------------------------------------------------- /mysql-8/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-8/dump/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-8/logs/slow.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/mysql-8/logs/slow.log -------------------------------------------------------------------------------- /nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/conf.d/vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/nginx/conf.d/vhost.conf -------------------------------------------------------------------------------- /nginx/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php-7-workspace/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/php-7-workspace/Dockerfile -------------------------------------------------------------------------------- /php-8-workspace/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/php-8-workspace/Dockerfile -------------------------------------------------------------------------------- /php-ini/7.1/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/php-ini/7.1/php.ini -------------------------------------------------------------------------------- /php-ini/7.3/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/docker-php-workspace/HEAD/php-ini/7.3/php.ini -------------------------------------------------------------------------------- /php-workers/7.1/supervisor.d/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php-workers/7.3/supervisor.d/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postgres/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postgres/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postgres/dump/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis/conf/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis/data/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------