├── .dockerignore ├── .gitignore ├── 5.3 ├── Dockerfile ├── app │ └── index.php ├── configs │ ├── app.conf │ ├── nginx.conf │ └── www.conf └── supervisord.conf ├── 5.4 ├── Dockerfile ├── app │ └── index.php ├── configs │ ├── app.conf │ ├── nginx.conf │ └── www.conf └── supervisord.conf ├── 5.5 ├── Dockerfile ├── app │ └── index.php ├── configs │ ├── app.conf │ ├── nginx.conf │ └── www.conf └── supervisord.conf ├── 5.6 ├── Dockerfile ├── app │ └── index.php ├── configs │ ├── app.conf │ ├── nginx.conf │ └── www.conf └── supervisord.conf ├── 7.0 ├── Dockerfile ├── app │ └── index.php ├── configs │ ├── app.conf │ ├── nginx.conf │ └── www.conf └── supervisord.conf ├── 7.1 ├── Dockerfile ├── app │ └── index.php ├── configs │ ├── app.conf │ ├── nginx.conf │ └── www.conf └── supervisord.conf ├── 7.2 ├── Dockerfile ├── app │ └── index.php ├── configs │ ├── app.conf │ ├── nginx.conf │ └── www.conf └── supervisord.conf ├── 7.3 ├── Dockerfile ├── app │ └── index.php ├── configs │ ├── app.conf │ ├── nginx.conf │ └── www.conf └── supervisord.conf ├── LICENSE ├── README.md └── test.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | LICENSE 4 | README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /5.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romeOz/docker-nginx-php/HEAD/5.3/Dockerfile -------------------------------------------------------------------------------- /5.3/app/index.php: -------------------------------------------------------------------------------- 1 |