You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/guides/frameworks/laravel/_index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ The demonstrated examples can be found in [this GitHub repository](https://githu
31
31
32
32
This guide is intended for educational purposes, helping developers adapt and optimize configurations for their specific use cases. Additionally, there are existing tools that support Laravel in containers:
33
33
34
-
-[Laravel Sail](https://laravel.com/docs/11.x/sail): An official package for easily starting Laravel in Docker.
34
+
-[Laravel Sail](https://laravel.com/docs/12.x/sail): An official package for easily starting Laravel in Docker.
35
35
-[Laradock](https://github.com/laradock/laradock): A community project that helps run Laravel applications in Docker.
Copy file name to clipboardExpand all lines: content/guides/frameworks/laravel/prerequisites.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ A fundamental understanding of Docker and how containers work will be helpful. I
19
19
20
20
## Basic knowledge of Laravel
21
21
22
-
This guide assumes you have a basic understanding of Laravel and PHP. Familiarity with Laravel’s command-line tools, such as [Artisan](https://laravel.com/docs/11.x/artisan), and its project structure is important for following the instructions.
22
+
This guide assumes you have a basic understanding of Laravel and PHP. Familiarity with Laravel’s command-line tools, such as [Artisan](https://laravel.com/docs/12.x/artisan), and its project structure is important for following the instructions.
23
23
24
24
- Laravel CLI: You should be comfortable using Laravel’s command-line tool (`artisan`).
# Install client libraries required for php extensions in runtime
217
217
RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -244,7 +244,7 @@ USER www-data
244
244
CMD ["bash"]
245
245
```
246
246
247
-
This Dockerfile is similar to the PHP-FPM Dockerfile, but it uses the `php:8.3-cli` image as the base image and sets up the container for running CLI commands.
247
+
This Dockerfile is similar to the PHP-FPM Dockerfile, but it uses the `php:8.4-cli` image as the base image and sets up the container for running CLI commands.
0 commit comments