├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md └── config └── custom.ini /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestrooo/eb-docker-php7/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestrooo/eb-docker-php7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestrooo/eb-docker-php7/HEAD/README.md -------------------------------------------------------------------------------- /config/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestrooo/eb-docker-php7/HEAD/config/custom.ini --------------------------------------------------------------------------------