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

Docker environment required to run Laravel (based on official php and mysql docker hub repositories)

License

NotificationsYou must be signed in to change notification settings

systemsdk/docker-apache-php-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker environment required to run Laravel (based on official php and mysql docker hub repositories).

Actions StatusCircleCICoverage StatusLatest Stable VersionTotal DownloadsMIT licensed

Source code

Requirements

  • Docker Engine version 23.0 or later
  • Docker Compose version 2.0 or later
  • An editor or IDE
  • MySQL Workbench

Note: OS recommendation - Linux Ubuntu based.

Components

  1. Apache 2.4
  2. PHP 8.4 (Apache handler)
  3. MySQL 8
  4. Laravel 12
  5. Mailpit (only for debug emails on dev environment)

Setting up Docker Engine with Docker Compose

For installing Docker Engine with docker compose please follow steps mentioned on pageDocker Engine.

Note 1: Please run next cmd after above step if you are using Linux OS:sudo usermod -aG docker $USER

Note 2: If you are using Docker Desktop for MacOS 12.2 or later - please enablevirtiofs for performance (enabled by default since Docker Desktop v4.22).

Setting up DEV environment

1.You can clone this repository from GitHub or install via composer.

Note: Deletestorage/mysql-data folder if it is exists.

If you have installed composer and want to install environment via composer you can use next cmd command:

composer create-project systemsdk/docker-apache-php-laravel example-app

2.Add domain to localhosts file:

127.0.0.1    localhost

3.Configure/docker/dev/xdebug-main.ini (Linux/Windows) or/docker/dev/xdebug-osx.ini (MacOS) (optional):

  • In case you need debug only requests with IDE KEY: PHPSTORM from frontend in your browser:
xdebug.start_with_request = no

Install locally in Firefox extension "Xdebug helper" and set in settings IDE KEY: PHPSTORM

  • In case you need debug any request to an api (by default):
xdebug.start_with_request = yes

4.Build, start and install the docker images from your terminal:

make buildmake startmake composer-installmake env-dev

Note 1: If you want to change default docker configurations (web_port, etc...) - open.env file, edit necessary environment variable value and stop, rebuild, start docker containers.

Note 2: If you are changing.env file and such env params likeMYSQL_VERSION,MYSQL_ROOT_PASSWORD, don't forget to stop docker containers and deletestorage/mysql-data folder before rebuild docker images.

5.Make sure that you have installed migrations/seeds:

make migratemake seed

6.Set key for application:

make key-generate

7.In order to use this application, please open in your browser next urls:

Setting up STAGING environment locally

1.You can clone this repository from GitHub or install via composer.

Note: Deletestorage/mysql-data andvendor folder if it is exists.

If you have installed composer and want to install environment via composer you can use next cmd command:

composer create-project systemsdk/docker-apache-php-laravel example-app

Note: If you want to change default docker configurations (web_port, etc...) - create uncommitted.env file, copy data from.env.staging, edit necessary environment variable value.

2.Build, start and install the docker images from your terminal:

make build-stagingmake start-staging

3.Make sure that you have installed migrations:

make migrate-no-test

4.Set key for application:

make key-generate

Setting up PROD environment locally

1.You can clone this repository from GitHub or install via composer.

Note: Deletestorage/mysql-data andvendor folder if it is exists.

If you have installed composer and want to install environment via composer you can use next cmd command:

composer create-project systemsdk/docker-apache-php-laravel example-app

2.Editcompose-prod.yaml and set necessary user/password for MySQL.

3.Editenv.prod and set necessary user/password for MySQL.

Note: If you want to change default docker configurations (web_port, etc...) - create uncommitted.env file, copy data from.env.prod, edit necessary environment variable value.

4.Build, start and install the docker images from your terminal:

make build-prodmake start-prod

5.Make sure that you have installed migrations:

make migrate-no-test

6.Set key for application:

make key-generate

Getting shell to container

After application will start (make start) and in order to get shell access inside laravel container you can run following command:

make ssh

Note 1: Please use next make commands in order to enter in other containers:make ssh-nginx,make ssh-supervisord,make ssh-mysql.

Note 2: Please useexit command in order to return from container's shell to local shell.

Building containers

In case you edited Dockerfile or other environment configuration you'll need to build containers again using next commands:

make downmake buildmake start

Note: Please use environment-specific commands if you need to build test/staging/prod environment, more details can be found using helpmake help.

Start and stop environment containers

Please use next make commands in order to start and stop environment:

make startmake stop

Note 1: For staging environment need to be used next make commands:make start-staging,make stop-staging.

Note 2: For prod environment need to be used next make commands:make start-prod,make stop-prod.

Stop and remove environment containers, networks

Please use next make commands in order to stop and remove environment containers, networks:

make down

Note: Please use environment-specific commands if you need to stop and remove test/staging/prod environment, more details can be found using helpmake help.

Additional main command available

make buildmake build-testmake build-stagingmake build-prodmake startmake start-testmake start-stagingmake start-prodmake stopmake stop-testmake stop-stagingmake stop-prodmake downmake down-testmake down-stagingmake down-prodmake restartmake restart-testmake restart-stagingmake restart-prodmake env-devmake env-test-cimake sshmake ssh-rootmake fishmake ssh-supervisordmake ssh-mysqlmake composer-install-no-devmake composer-installmake composer-updatemake composer-auditmake key-generatemake infomakehelpmake logsmake logs-supervisordmake logs-mysqlmake drop-migratemake migrate-no-testmake migratemake seedmake phpunitmake report-code-coveragemake phpcsmake ecsmake ecs-fixmake phpmetricsmake phpcpdmake phpcpd-html-reportmake phpmdmake phpstanmake phpinsightsetc....

Notes: Please see more commands in Makefile

Architecture & packages

Guidelines

Working on your project

  1. For new feature development, forkdevelop branch into a new branch with one of the two patterns:
    • feature/{ticketNo}
  2. Commit often, and write descriptive commit messages, so it's easier to follow steps taken when reviewing.
  3. Push this branch to the repo and create pull request intodevelop to get feedback, with the formatfeature/{ticketNo} - "Short descriptive title of Jira task".
  4. Iterate as needed.
  5. Make sure that "All checks have passed" on CircleCI(or another one in case you are not using CircleCI) and status is green.
  6. When PR is approved, it will be squashed & merged, intodevelop and later merged intorelease/{No} for deployment.

Note: You can find git flow detail examplehere.

License

The MIT License (MIT)

About

Docker environment required to run Laravel (based on official php and mysql docker hub repositories)

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp