jdsantos/laradocker
- 1 minjdsantos/laradocker
A Laravel package to seamlessly integrate Docker into your application. It provides an easy way to set up Docker for your Laravel project with minimal configuration.
Prerequisites
Ensure you have PHP (8.2+), Composer and Docker installed on your machine before proceeding. This package requires also that you run it inside a Laravel 11+ project:
🚀 Installation & Usage
Inside your Laravel project folder, simply run the following commands:
-
Require the Package: Install the
jdsantos/laradocker
package as a development dependency:composer require --dev jdsantos/laradocker
-
Install Laradocker: Launch the installer and follow the steps to include all necessary files inside your project folder:
php artisan laradocker:install
-
Try it out!: Now you can run your Laravel app using Docker like this:
docker run -p 80:80 -v laravel_storage:/opt/laravel/storage --rm -it $(docker build -q .)
It works also if you’re using Podman
podman run -p 80:80 -v laravel_storage:/opt/laravel/storage --rm -it $(podman build -q .)
🛢 Databases support
Laradocker currently supports the following databases:
Database | Version | Status |
---|---|---|
SQLite | 3.26.0+ | ✅ |
Mysql | 5.7+ | ✅ |
MariaDB | 10.3+ | ✅ |
PostgreSQL | 10.0+ | ✅ |
SQLServer | - | ❌ |
💻 Code
Code is available on this Github repo.. If you want to support me, please ⭐ the repo!