├── .dockerignore ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── alphp-base.Dockerfile ├── alphp-cli.Dockerfile ├── alphp-dev.Dockerfile ├── alphp-fpm.Dockerfile ├── conf ├── app-vhost.conf └── php-opcache.ini ├── deps └── xhprof │ ├── install-xhprof.md │ └── xhprof.php ├── docker-compose.yml └── tmp └── .gitkeep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/README.md -------------------------------------------------------------------------------- /alphp-base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/alphp-base.Dockerfile -------------------------------------------------------------------------------- /alphp-cli.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/alphp-cli.Dockerfile -------------------------------------------------------------------------------- /alphp-dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/alphp-dev.Dockerfile -------------------------------------------------------------------------------- /alphp-fpm.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/alphp-fpm.Dockerfile -------------------------------------------------------------------------------- /conf/app-vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/conf/app-vhost.conf -------------------------------------------------------------------------------- /conf/php-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/conf/php-opcache.ini -------------------------------------------------------------------------------- /deps/xhprof/install-xhprof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/deps/xhprof/install-xhprof.md -------------------------------------------------------------------------------- /deps/xhprof/xhprof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/deps/xhprof/xhprof.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/alphp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------