docker-laravel-apache
docker-laravel-apache copied to clipboard
docker-laravel-apache 🐳
Introduction
Build a simple laravel development environment with docker-compose. Apache version of docker-laravel.
Usage
$ git clone [email protected]:ucan-lab/docker-laravel-apache.git
$ cd docker-laravel-apache
$ make create-project # Install the latest Laravel project
$ make install-recommend-packages # Not required
http://localhost
Read this Makefile.
Container structure
├── web
└── db
web container
db container
- Base image
- mysql:8.0
Persistent MySQL Storage
By default, the named volume is mounted, so MySQL data remains even if the container is destroyed. If you want to delete MySQL data intentionally, execute the following command.
$ docker-compose down -v && docker-compose up