Skip to content

Commit 35f673e

Browse files
committed
Upgrade WordPress to 6.9.1
1 parent e4a00db commit 35f673e

2 files changed

Lines changed: 26 additions & 26 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ WORKDIR /var/www/wp-content
6767
RUN chown -R nobody:nobody /var/www
6868

6969
# WordPress
70-
ENV WORDPRESS_VERSION=6.9
71-
ENV WORDPRESS_SHA1=256dda5bb6a43aecd806b7a62528f442c06e6c25
70+
ENV WORDPRESS_VERSION=6.9.1
71+
ENV WORDPRESS_SHA1=2914d37c00597e6216a88f90e22b1b4c7bbd09e8
7272

7373
RUN mkdir -p /usr/src
7474

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
21
# WordPress Docker Container
32

43
Lightweight WordPress container with Nginx 1.28 & PHP-FPM 8.4 based on Alpine Linux.
54

6-
_WordPress version currently installed:_ **6.9**
5+
_WordPress version currently installed:_ **6.9.1**
76

8-
* Used in production for many sites, making it stable, tested and up-to-date
9-
* Optimized for 100 concurrent users
10-
* Optimized to only use resources when there's traffic (by using PHP-FPM's ondemand PM)
11-
* Works with Amazon Cloudfront or CloudFlare as SSL terminator and CDN
12-
* Multi-platform, supporting AMD4, ARMv6, ARMv7, ARM64
13-
* Built on the lightweight Alpine Linux distribution
14-
* Small Docker image size (+/-90MB)
15-
* Uses PHP 8.4 for the best performance, low cpu usage & memory footprint
16-
* Can safely be updated without losing data
17-
* Fully configurable because wp-config.php uses the environment variables you can pass as an argument to the container
7+
- Used in production for many sites, making it stable, tested and up-to-date
8+
- Optimized for 100 concurrent users
9+
- Optimized to only use resources when there's traffic (by using PHP-FPM's ondemand PM)
10+
- Works with Amazon Cloudfront or CloudFlare as SSL terminator and CDN
11+
- Multi-platform, supporting AMD4, ARMv6, ARMv7, ARM64
12+
- Built on the lightweight Alpine Linux distribution
13+
- Small Docker image size (+/-90MB)
14+
- Uses PHP 8.4 for the best performance, low cpu usage & memory footprint
15+
- Can safely be updated without losing data
16+
- Fully configurable because wp-config.php uses the environment variables you can pass as an argument to the container
1817

1918
[![Docker Pulls](https://img.shields.io/docker/pulls/trafex/wordpress.svg)](https://hub.docker.com/r/trafex/wordpress/)
2019
![nginx 1.28](https://img.shields.io/badge/nginx-1.28-brightgreen.svg)
2120
![php 8.4](https://img.shields.io/badge/php-8.4-brightgreen.svg)
2221
![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)
2322

2423
## [![Trafex Consultancy](https://timdepater.com/logo/mini-logo.png)](https://timdepater.com?mtm_campaign=github)
24+
2525
I can help you with [Containerization, Kubernetes, Monitoring, Infrastructure as Code and other DevOps challenges](https://timdepater.com/?mtm_campaign=github).
2626

2727
## Usage
@@ -31,13 +31,14 @@ I can help you with [Containerization, Kubernetes, Monitoring, Infrastructure as
3131
This image follows the **Debian versioning convention** for tagging: `<wordpress-version>-<container-revision>`
3232

3333
**Available tags:**
34-
* `latest` - Latest stable release
35-
* `<major>.<minor>.<patch>-<revision>` - Full version (e.g., `6.8.1-1`, `6.8.1-2`)
36-
* The first part (`6.8.1`) tracks the WordPress version included
37-
* The revision number (`-1`, `-2`) indicates container updates (security patches, dependency updates, configuration changes)
38-
* `<major>.<minor>.<patch>` - Latest container revision for a WordPress version (e.g., `6.8.1``6.8.1-2`)
39-
* `<major>.<minor>` - Latest patch and revision (e.g., `6.8``6.8.1-2`)
40-
* `<major>` - Latest minor, patch and revision (e.g., `6``6.8.1-2`)
34+
35+
- `latest` - Latest stable release
36+
- `<major>.<minor>.<patch>-<revision>` - Full version (e.g., `6.8.1-1`, `6.8.1-2`)
37+
- The first part (`6.8.1`) tracks the WordPress version included
38+
- The revision number (`-1`, `-2`) indicates container updates (security patches, dependency updates, configuration changes)
39+
- `<major>.<minor>.<patch>` - Latest container revision for a WordPress version (e.g., `6.8.1``6.8.1-2`)
40+
- `<major>.<minor>` - Latest patch and revision (e.g., `6.8``6.8.1-2`)
41+
- `<major>` - Latest minor, patch and revision (e.g., `6``6.8.1-2`)
4142

4243
**For production use**, pin to a specific full version tag (e.g., `trafex/wordpress:6.8.1-1`) to ensure reproducible deployments and controlled updates.
4344

@@ -63,10 +64,9 @@ This image includes [wp-cli](https://wp-cli.org/) which can be used like this:
6364

6465
docker exec <your container name> /usr/local/bin/wp --path=/usr/src/wordpress <your command>
6566

66-
6767
## Inspired by
6868

69-
* https://hub.docker.com/_/wordpress/
70-
* https://codeable.io/wordpress-developers-intro-to-docker-part-two/
71-
* https://github.com/TrafeX/docker-php-nginx/
72-
* https://github.com/etopian/alpine-php-wordpress
69+
- https://hub.docker.com/_/wordpress/
70+
- https://codeable.io/wordpress-developers-intro-to-docker-part-two/
71+
- https://github.com/TrafeX/docker-php-nginx/
72+
- https://github.com/etopian/alpine-php-wordpress

0 commit comments

Comments
 (0)