Skip to content
/ docker-laravel Public template

All-in-one docker-compose configuration for Laravel with Nginx, PHP-fpm, Xdebug, PostgreSQL, MailPit, Node ...

License

Notifications You must be signed in to change notification settings

cbouvat/docker-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Laravel

Requirement

  • Docker engine
  • Docker Compose
  • Make

Build with

  • HTTP server Nginx 1.25
  • PHP 8.3
  • Node 20
  • PostgreSQL 16 or MariaDB 11

Install Laravel

Many commands are in Makefile file. Example up, down, upgrade and many more 👇.

DB_CONNECTION=pgsql
DB_HOST=pgsql
DB_PORT=5432
DB_DATABASE=Change this
DB_USERNAME=Change this
DB_PASSWORD=Change this

MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"

The project is ready to use 🎉 ! Go to http://localhost for see the application.

List of commands

All commands are in Makefile file with description. Open this file for more informations.

Development environment

Start environment with this command make up and stop with make down. You can use make upgrade-dev for upgrade the environment.

Xdebug

For Visual Studio Code, use this configuration in .vscode/launch.json file.

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Listen for Xdebug",
            "type": "php",
            "request": "launch",
            "port": 9003,
            "pathMappings": {
                "/app": "${workspaceFolder}"
            }
        }
    ]
}

Database

The database is accessible on port 5432 with this parameters :

  • Host : localhost
  • Port : 5432

Use for example DBeaver for connect to the database.

Mail capture

Mailpit capture all mails form the application.

http://localhost:8025

About

All-in-one docker-compose configuration for Laravel with Nginx, PHP-fpm, Xdebug, PostgreSQL, MailPit, Node ...

Topics

Resources

License

Stars

Watchers

Forks