├── .env-dist ├── .gitignore ├── .gitlab-ci.yml ├── Makefile ├── README.md ├── docker-compose.yml ├── nginx ├── Dockerfile-fpm-nginx └── image-files │ ├── etc │ ├── nginx │ │ ├── conf.d │ │ │ └── default.conf │ │ ├── nginx.conf │ │ └── ssl │ │ │ ├── nginx-selfsigned.crt │ │ │ └── nginx-selfsigned.key │ └── supervisor │ │ ├── conf.d │ │ ├── fpm.conf │ │ └── nginx.conf │ │ └── supervisord.conf │ ├── root │ └── .bashrc │ └── usr │ └── local │ ├── bin │ ├── composer │ ├── docker-entrypoint.sh │ └── docker-run.sh │ └── etc │ └── php │ ├── conf.d │ └── base.ini │ ├── php-fpm.conf │ └── pool.d │ └── www.conf └── test ├── app └── web │ └── index.php ├── debug.sh ├── dev.sh ├── prod.sh ├── requirements.php └── requirements ├── YiiRequirementChecker.php ├── requirements.php └── views ├── console └── index.php └── web ├── css.php └── index.php /.env-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/.env-dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/Dockerfile-fpm-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/Dockerfile-fpm-nginx -------------------------------------------------------------------------------- /nginx/image-files/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/image-files/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/image-files/etc/nginx/ssl/nginx-selfsigned.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/etc/nginx/ssl/nginx-selfsigned.crt -------------------------------------------------------------------------------- /nginx/image-files/etc/nginx/ssl/nginx-selfsigned.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/etc/nginx/ssl/nginx-selfsigned.key -------------------------------------------------------------------------------- /nginx/image-files/etc/supervisor/conf.d/fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/etc/supervisor/conf.d/fpm.conf -------------------------------------------------------------------------------- /nginx/image-files/etc/supervisor/conf.d/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/etc/supervisor/conf.d/nginx.conf -------------------------------------------------------------------------------- /nginx/image-files/etc/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/etc/supervisor/supervisord.conf -------------------------------------------------------------------------------- /nginx/image-files/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/root/.bashrc -------------------------------------------------------------------------------- /nginx/image-files/usr/local/bin/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/usr/local/bin/composer -------------------------------------------------------------------------------- /nginx/image-files/usr/local/bin/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/usr/local/bin/docker-entrypoint.sh -------------------------------------------------------------------------------- /nginx/image-files/usr/local/bin/docker-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/usr/local/bin/docker-run.sh -------------------------------------------------------------------------------- /nginx/image-files/usr/local/etc/php/conf.d/base.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/usr/local/etc/php/conf.d/base.ini -------------------------------------------------------------------------------- /nginx/image-files/usr/local/etc/php/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/usr/local/etc/php/php-fpm.conf -------------------------------------------------------------------------------- /nginx/image-files/usr/local/etc/php/pool.d/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmstr/docker-php-yii2/HEAD/nginx/image-files/usr/local/etc/php/pool.d/www.conf -------------------------------------------------------------------------------- /test/app/web/index.php: -------------------------------------------------------------------------------- 1 |