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
Update documentation and Dockerfiles to support PHP 8.5, including changes to image references across various guides and examples. Adjusted configurations in multiple files to reflect the new version.
Copy file name to clipboardExpand all lines: docs/content/docs/1.getting-started/2.container-basics.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ There are some important terms to understand when working with containers:
18
18
| Term | Definition |
19
19
|------|------------|
20
20
| Container | A running instance of an image. |
21
-
| Image | A template for a container to start with (ie. `serversideup/php:8.4-frankenphp`). |
22
-
| Tag | A specific version of an image (ie. `8.4-frankenphp`). |
21
+
| Image | A template for a container to start with (ie. `serversideup/php:8.5-frankenphp`). |
22
+
| Tag | A specific version of an image (ie. `8.5-frankenphp`). |
23
23
| Registry | A repository of images. This is where users can pull images from to start a container. This can be places like [Docker Hub](https://hub.docker.com/r/serversideup/php) or [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php). |
24
24
| Volume | A directory on your host machine that is mounted into a container. This allows you to share files between your host machine and the container. |
25
25
| Port | Ports are virtual numbers organizing network data traffic, directing it to the correct application on a device. If you want to expose traffic to work with `http://localhost`, you would map port `80` on your host machine to port `8080` on the container. |
@@ -57,9 +57,9 @@ So although we're going to show you best practices with Docker, this means you'l
57
57
If you followed our [installation guide](/docs/getting-started/installation), you've already run containers and seen them in action. Let's break down what actually happened when you ran `docker compose up`.
58
58
59
59
### Images vs Containers
60
-
Think of an **image** as a blueprint and a **container** as the actual running instance of that blueprint. When you specified `image: serversideup/php:8.4-fpm-nginx` in your `compose.yml`, you told Docker to:
60
+
Think of an **image** as a blueprint and a **container** as the actual running instance of that blueprint. When you specified `image: serversideup/php:8.5-fpm-nginx` in your `compose.yml`, you told Docker to:
61
61
62
-
1. Download the `serversideup/php:8.4-fpm-nginx` image (the blueprint)
62
+
1. Download the `serversideup/php:8.5-fpm-nginx` image (the blueprint)
63
63
2. Create a container from that image (the running instance)
64
64
3. Start the container with your specified configuration
65
65
@@ -84,7 +84,7 @@ In your `compose.yml`, when you define a service called `php`, you're telling Do
Copy file name to clipboardExpand all lines: docs/content/docs/3.framework-guides/2.wordpress/4.using-wordpress-with-docker.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ Here's a proven WordPress stack running on Docker Swarm that balances containeri
91
91
92
92
**Infrastructure components:**
93
93
1.[Traefik](https://traefik.io/traefik/){target="_blank"} - Automatic SSL with Let's Encrypt and request routing
94
-
2.[serversideup/php:8.4-fpm-apache](https://hub.docker.com/r/serversideup/php/tags?name=fpm-apache){target="_blank"} - PHP with Apache for WordPress compatibility
94
+
2.[serversideup/php:8.5-fpm-apache](https://hub.docker.com/r/serversideup/php/tags?name=fpm-apache){target="_blank"} - PHP with Apache for WordPress compatibility
95
95
3.[MariaDB](https://hub.docker.com/_/mariadb){target="_blank"} - MySQL-compatible database without Oracle licensing
96
96
97
97
::tip
@@ -136,7 +136,7 @@ Treating containers as the runtime environment while keeping WordPress files on
0 commit comments