A minimal Laravel environment fully containerized with Docker, ready for development.
- Docker
- cURL
First, create a directory for your new project and move into it:
mkdir NEW-PROJECT-NAME && cd NEW-PROJECT-NAMEOption 1. Using cURL:
curl -L -o setup.sh https://raw.githubusercontent.com/RonasIT/laravel-project-create/refs/heads/main/setup.sh && chmod +x setup.sh && ./setup.shThe setup.sh script is a bootstrapper: when you run it, it will automatically download the additional project files
(init-project.sh, docker-compose.yml, Dockerfile, and docker/entrypoint.sh) into your project directory. You do not
need to download these files manually.
Option 2. Using Git:
git clone [email protected]:RonasIT/laravel-project-create.git NEW-PROJECT-NAME && cd NEW-PROJECT-NAME && ./setup.shClone the repository and run the bootstrapper script. The setup will execute automatically, preparing your Laravel project for development.
Laravel project is ready for development!