Skip to content

Latest commit

 

History

History
80 lines (56 loc) · 2.06 KB

README.md

File metadata and controls

80 lines (56 loc) · 2.06 KB

docker-laravel 🐳

docker-laravel

Test laravel-create-project.yml Test laravel-git-clone.yml License

Introduction

Build a simple laravel development environment with docker-compose. Compatible with Windows(WSL2), macOS(M1) and Linux.

Usage

Laravel install

  1. Click Use this template
  2. Git clone & change directory
  3. Execute the following command
$ mkdir -p src
$ docker compose build
$ docker compose up -d
$ docker compose exec app composer create-project --prefer-dist laravel/laravel .
$ docker compose exec app php artisan key:generate
$ docker compose exec app php artisan storage:link
$ docker compose exec app chmod -R 777 storage bootstrap/cache
$ docker compose exec app php artisan migrate

http://localhost

Laravel setup

  1. Git clone & change directory
  2. Execute the following command
$ make install

http://localhost

Tips

Container structures

├── app
├── web
└── db

app container

web container

db container

mailhog container