More than 1 year has passed since last update.
【忙しい人向け】カップ麺より早く作るDockerでLaravel開発環境構築
170
Last updated at Posted at 2019-10-30
コピペするだけ。
git clone https://github.com/ucan-lab/docker-laravel.git
cd docker-laravel
#Makeコマンド用意しています。
make create-project
#or 1コマンドずつ打ちたい人はこちら
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
GitHub
- https://github.com/ucan-lab/docker-laravel
-
https://github.com/ucan-lab/docker-laravel/wiki
- Nodeのインストール手順など載せています。
参考
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme
