Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A docker-compose workflow for local Laravel development

NotificationsYou must be signed in to change notification settings

coderpick/docker-compose-laravel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A pretty simplified docker-compose workflow that sets up a LEMP network of containers for local Laravel development. You can view the full article that inspired this repohere.

Usage

To get started, make sure you haveDocker installed on your system, and then clone this repository.

First add your entire Laravel project to thesrc folder, then open a terminal and from this cloned respository's root rundocker-compose up -d --build. Open up your browser of choice tohttp://localhost:8080 and you should see your Laravel app running as intended.Your Laravel app needs to be in the src directory first before bringing the containers up, otherwise the artisan container will not build, as it's missing the appropriate file.

New: Three new containers have been added that handle Composer, NPM, and Artisan commands without having to have these platforms installed on your local computer. Use the following command templates from your project root, modifiying them to fit your particular use case:

  • docker-compose run --rm composer update
  • docker-compose run --rm npm run dev
  • docker-compose run --rm artisan migrate

Containers created and their ports (if used) are as follows:

  • nginx -:8080
  • mysql -:3306
  • php -:9000
  • npm
  • composer
  • artisan

About

A docker-compose workflow for local Laravel development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile100.0%

[8]ページ先頭

©2009-2025 Movatter.jp