0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravel プロジェクトをDockerを使用し作成。また、既存プロジェクトをDockersail up する方法

Posted at

Dockerを使用してLaravelプロジェクトを作成し、実行する
1,Docker Desktopをインストール
2,Windows Subsystem for Linux 2(WSL2)がインストール
3,curl -s https://laravel.build/example-app | bash

curl -s https://laravel.build/example-app | bash

4,cd example-app

cd example-app

5,./vendor/bin/sail up

wsl
./vendor/bin/sail up

6,http://localhost

クローンした既存LaravelプロジェクトのDocker環境構築
1,git clone プロジェクト名

git clone プロジェクト名

2,cd プロジェクト名

cd プロジェクト名

3,cd docker-composeファイルのあるディレクトリ

4,venderディレクトリがないのでcomposer updateを実行

composer update

5,composer installを実行

composer install

6,cp .env.example .envを実行

cp .env.example .env

7,wslターミナルで./vendor/bin/sail upを実行(初回はコンテナが立ち上がるまで8分ほどかかる場合もある)

wsl
./vendor/bin/sail up
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?