Directory structure:
└── romeoz-docker-nginx-php/
├── README.md
├── LICENSE
├── test.sh
├── .dockerignore
├── 5.3/
│ ├── Dockerfile
│ ├── supervisord.conf
│ ├── app/
│ │ └── index.php
│ └── configs/
│ ├── app.conf
│ ├── nginx.conf
│ └── www.conf
├── 5.4/
│ ├── Dockerfile
│ ├── supervisord.conf
│ ├── app/
│ │ └── index.php
│ └── configs/
│ ├── app.conf
│ ├── nginx.conf
│ └── www.conf
├── 5.5/
│ ├── Dockerfile
│ ├── supervisord.conf
│ ├── app/
│ │ └── index.php
│ └── configs/
│ ├── app.conf
│ ├── nginx.conf
│ └── www.conf
├── 5.6/
│ ├── Dockerfile
│ ├── supervisord.conf
│ ├── app/
│ │ └── index.php
│ └── configs/
│ ├── app.conf
│ ├── nginx.conf
│ └── www.conf
├── 7.0/
│ ├── Dockerfile
│ ├── supervisord.conf
│ ├── app/
│ │ └── index.php
│ └── configs/
│ ├── app.conf
│ ├── nginx.conf
│ └── www.conf
├── 7.1/
│ ├── Dockerfile
│ ├── supervisord.conf
│ ├── app/
│ │ └── index.php
│ └── configs/
│ ├── app.conf
│ ├── nginx.conf
│ └── www.conf
├── 7.2/
│ ├── Dockerfile
│ ├── supervisord.conf
│ ├── app/
│ │ └── index.php
│ └── configs/
│ ├── app.conf
│ ├── nginx.conf
│ └── www.conf
└── 7.3/
├── Dockerfile
├── supervisord.conf
├── app/
│ └── index.php
└── configs/
├── app.conf
├── nginx.conf
└── www.conf