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
# 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.4-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.5-cli` image as the base image and sets up the container for running CLI commands.
248
248
249
249
## Create a Dockerfile for Nginx (production)
250
250
@@ -368,7 +368,7 @@ services:
368
368
env_file:
369
369
- .env
370
370
networks:
371
-
- laravel
371
+
- laravel-production
372
372
373
373
postgres:
374
374
image: postgres:18
@@ -426,7 +426,7 @@ volumes:
426
426
```
427
427
428
428
> [!NOTE]
429
-
> Ensure you have an `.env` file at the root of your Laravel project with the necessary configurations (e.g., database and Xdebug settings) to match the Docker Compose setup.
429
+
> Ensure you have an `.env` file at the root of your Laravel project with the necessary configurations to match the Docker Compose setup.
0 commit comments