Files
docker-docs/content/guides/frameworks/laravel/prerequisites.md
Sergei Shitikov d89e8383ce Update Laravel guide (bump to Laravel 12 and php 8.4) (#22699)
<!--Delete sections as needed -->

## Description

Introduces small update of the Laravel framework guide (bump versions to
the latest Laravel 12 and php 8.4 + updates the related examples repo -
the fork needs to be synced).

## Related issues or tickets

#21268 

## Reviews

<!-- Notes for reviewers here -->
As was discussed on the last docs meeting, to simplify the process the
review will be sent to the one of Docker Captains first.
@igor-alexandrov @ajeetraina 

- [ ] Technical review
- [ ] Editorial review
- [ ] Product review
2025-05-28 11:15:14 -07:00

1.5 KiB
Raw Blame History

title, description, weight
title description weight
Prerequisites for Setting Up Laravel with Docker Compose Ensure you have the required tools and knowledge before setting up Laravel with Docker Compose. 10

Before you begin setting up Laravel with Docker Compose, make sure you meet the following prerequisites:

Docker and Docker Compose

You need Docker and Docker Compose installed on your system. Docker allows you to containerize applications, and Docker Compose helps you manage multi-container applications.

Basic understanding of Docker and containers

A fundamental understanding of Docker and how containers work will be helpful. If you're new to Docker, consider reviewing the Docker Overview to familiarize yourself with containerization concepts.

Basic knowledge of Laravel

This guide assumes you have a basic understanding of Laravel and PHP. Familiarity with Laravels command-line tools, such as Artisan, and its project structure is important for following the instructions.

  • Laravel CLI: You should be comfortable using Laravels command-line tool (artisan).
  • Laravel Project Structure: Familiarize yourself with Laravels folder structure (app, config, routes, tests, etc.).