Skip to content

Commit

Permalink
bump WP to 6.5, deps
Browse files Browse the repository at this point in the history
  • Loading branch information
joemaller committed Apr 7, 2024
1 parent 6e656fc commit 20f8489
Show file tree
Hide file tree
Showing 6 changed files with 412 additions and 620 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This version is automatically updated by the wordpress:bump script
# but can also be manually updated for tagged betas and release candidates
# Manual updates also must change wp-version.json
FROM wordpress:6.4.2-php8.2-apache
FROM wordpress:6.5-php8.2-apache

LABEL version="1.6.0"

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<h4>
Version 1.6.0
<!-- WPVERSION -->- WordPress 6.4.2
<!-- WPVERSION -->- WordPress 6.5
</h4>

<!-- [![dockeri.co](https://dockeri.co/image/ideasonpurpose/wordpress)](https://hub.docker.com/r/ideasonpurpose/wordpress)<br> -->
Expand All @@ -14,7 +14,7 @@ Version 1.6.0

This project provides local development environments for fast iteration of existing WordPress websites. This includes pre-configured Docker-based MySQL and PHP servers, our [Docker-Build toolchain][docker-build], [Xdebug](https://xdebug.org/), [ImageMagick](http://www.imagemagick.org/) and a number of helper scripts.

The project builds on the official WordPress docker image, currently **[v6.4.2](https://hub.docker.com/_/wordpress)**
The project builds on the official WordPress docker image, currently **[v6.5](https://hub.docker.com/_/wordpress)**

## Getting Started

Expand All @@ -23,7 +23,7 @@ To update an existing project or start a new one, run the following commands in
##### macOS, Linux & Windows PowerShell

```
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:6.4.2 init
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:6.5 init
```

Followed by:
Expand All @@ -37,7 +37,7 @@ _NOTE: If **~/.composer** doesn't exist, mounting the Docker volume will create
##### Windows Command Prompt

```
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:6.4.2 init
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:6.5 init
```

- `init` command copies all the necessary tooling files into place and sets up the default theme directory structure.
Expand Down
4 changes: 2 additions & 2 deletions boilerplate-tooling/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
depends_on:
- db
# image: &wp_img ideasonpurpose/wordpress:dev
image: &wp_img ideasonpurpose/wordpress:6.4.2
image: &wp_img ideasonpurpose/wordpress:6.5
restart: always
volumes:
- wp_data:/var/www/html
Expand Down Expand Up @@ -69,7 +69,7 @@ services:
# Image from: https://hub.docker.com/r/ideasonpurpose/docker-build
tools:
# image: ideasonpurpose/docker-build:dev
image: ideasonpurpose/docker-build:0.14.0
image: ideasonpurpose/docker-build:0.16.0
user: "${UID:-1000}:${GID:-1000}"
depends_on:
- wordpress
Expand Down
Loading

0 comments on commit 20f8489

Please sign in to comment.