├── Dockerfile ├── LICENSE ├── README.md ├── conf └── .gitkeep ├── docker-compose.yml ├── dump └── myDb.sql └── www └── index.php /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcavat/docker-lamp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcavat/docker-lamp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcavat/docker-lamp/HEAD/README.md -------------------------------------------------------------------------------- /conf/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcavat/docker-lamp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dump/myDb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcavat/docker-lamp/HEAD/dump/myDb.sql -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcavat/docker-lamp/HEAD/www/index.php --------------------------------------------------------------------------------