This repo is meant to be a bare-bones vanilla install of Laravel runnable in Docker. Use it as a reference or starting point as needed. It uses the latest version of PHP, MySQL, and Apache
To get your local development environment running, run the following command:
docker-compose up -d
# now point your web-browser to 127.0.0.1
To stop your local development environment:
docker-compose stop
To get terminal access on your webserver:
- Get the name of the container of the php container:
docker ps
- Attach to the bash terminal of the php container:
docker exec -i -t <name_of_container> /bin/bash