├── .DS_Store ├── Dockerfile ├── README.md ├── custom.conf ├── docker-compose.yaml ├── index.html ├── index.php ├── nginx ├── Dockerfile └── custom.conf ├── php ├── Dockerfile └── xdebug.ini └── src └── public └── index.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamyHakam/docker-tutorials/HEAD/.DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamyHakam/docker-tutorials/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamyHakam/docker-tutorials/HEAD/README.md -------------------------------------------------------------------------------- /custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamyHakam/docker-tutorials/HEAD/custom.conf -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamyHakam/docker-tutorials/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamyHakam/docker-tutorials/HEAD/index.html -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |