Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 668 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 668 Bytes

laravel-docker

Clone this repo

git clone git@github.com:thilanga/laravel-docker.git
cd laravel-docker

Configuration

To change configuration values, look in the docker-compose.yml file and change the php container's environment variables. These directly correlate to the Laravel environment variables.

Build & Run

docker-compose -f docker/docker-compose.yml up --build -d
docker exec -it --user www-data docker_app_1 composer create-project --prefer-dist laravel/laravel . 

Navigate to http://localhost and you should see the application home page

Stop Everything

docker-compose down