├── .circleci └── config.yml ├── .env ├── .gitignore ├── LICENSE ├── README.md ├── caddy ├── Dockerfile ├── config │ └── Caddyfile └── start.sh ├── docker-compose.yml ├── example └── public │ ├── index.php │ └── info.php ├── nginx ├── Dockerfile ├── nginx.conf └── nginx.vh.default.conf └── php-fpm ├── Dockerfile └── config ├── newrelic.ini ├── php-fpm.conf ├── php.ini ├── www.conf └── xdebug.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | # Your Ip to be used in remote debug 2 | MY_IP=192.168.0.10 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/README.md -------------------------------------------------------------------------------- /caddy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/caddy/Dockerfile -------------------------------------------------------------------------------- /caddy/config/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/caddy/config/Caddyfile -------------------------------------------------------------------------------- /caddy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/caddy/start.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petronetto/php7-alpine/HEAD/example/public/index.php -------------------------------------------------------------------------------- /example/public/info.php: -------------------------------------------------------------------------------- 1 |