Basic LAMP setup + composer built with Docker Compose
It consists of following services (more to come soon):
- apache (2.4.33)
- php (7.3-fpm)
- mysql (5.7)
- composer, a dependency manager for PHP
- git (only to be able to clone the repo)
- docker desktop
- Clone this repo
- configure .env file to fit your needs (not required)
- Run docker-compose to create and start all the services
- optionally, run
docker-compose run --rm composer composer installmanually in order to install composer packages
git clone [email protected]:pawco/docker-lamp.git .
cd docker-lamp
docker-compose up -dand your LAMP stack is ready, just type 127.0.0.1 or localhost.
In order to bind custom domain to your localhost, edit your /etc/hosts file and add following (applies for Mac and Linux):
127.0.0.1 domain.intra- default document root is
./sourcefolder - default MySQL root password is
toor - default MySQL database is
docker - default http port is 80
- if you change
composer.jsonand you need to install/update packages, you have to runcomposer updatemanually:docker-compose run --rm composer composer update - in order to create database dump from mysql container run following:
docker exec mysql sh -c 'exec mysqldump --all-databases -uroot -p"$MYSQL_ROOT_PASSWORD"' > /some/path/on/your/host/all-databases.sql- in order ro restore database dump into mysql container run following:
docker exec -i mysql sh -c 'exec mysql -uroot -p"$MYSQL_ROOT_PASSWORD"' < /some/path/on/your/host/all-databases.sqlAll default values mentioned above are configurable in .env file
- add support for node
- use separate php.ini and my.cnf files for more flexible configuration
- better documentation with examples
Have Fun!