Skip to content

Commit

Permalink
1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joemaller committed Jan 16, 2024
1 parent 173dbaf commit 8c34452
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v1.5.0](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v1.4.0...v1.5.0)

- publish port 80, update config snippet [`94f6946`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/94f6946e321f5317b177874b69344801c7a6106c)
- bump readme [`173dbaf`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/173dbaf5726f81cc00fa2504dc9b6c1154a9f07a)

#### [v1.4.0](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v1.3.3...v1.4.0)

> 8 January 2024
- bump npm deps [`25e3a52`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/25e3a521148a3f3fe9e07358a20cf445abd1c66a)
- install node from nodesource installer again, bump to v20 [`8e72195`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/8e7219598077463b6b30bd96a2bcdc3d3461911f)
- use WordPress version in Getting Started examples [`ecb4dcf`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/ecb4dcf36e5d495d9e71b798801b45e779e044f6)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Manual updates also must change wp-version.json
FROM wordpress:6.4.2-php8.2-apache

LABEL version="1.4.0"
LABEL version="1.5.0"

# Add `wp` user and group, then add `www-data` user to `wp` group
RUN addgroup --gid 1000 wp \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# WordPress local development with Docker

<h4>
Version 1.4.0
Version 1.5.0
<!-- WPVERSION -->- WordPress 6.4.2
</h4>

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:1.5.0 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:1.5.0 init
```

- `init` command copies all the necessary tooling files into place and sets up the default theme directory structure.
Expand Down
2 changes: 1 addition & 1 deletion bin/docker-entrypoint-iop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
# https://github.com/ideasonpurpose/docker-wordpress-dev
#
# Version: 1.4.0
# Version: 1.5.0

RESET="\033[0m"
BOLD="\033[1m"
Expand Down
2 changes: 1 addition & 1 deletion bin/getting-started.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
# https://github.com/ideasonpurpose/docker-wordpress-dev
#
# Version: 1.4.0
# Version: 1.5.0

# Getting Started message

Expand Down
2 changes: 1 addition & 1 deletion bin/permissions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
# https://github.com/ideasonpurpose/docker-wordpress-dev
#
# Version: 1.4.0
# Version: 1.5.0

# This script corrects permissions of known files in our WordPress boilerplate.
# The script is run from Docker as root, with a $OWNER_GROUP envvar set to "$UID:$GID"
Expand Down
2 changes: 1 addition & 1 deletion bin/pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
# https://github.com/ideasonpurpose/docker-wordpress-dev
#
# Version: 1.4.0
# Version: 1.5.0

# style helpers
RESET="\033[0m"
Expand Down
2 changes: 1 addition & 1 deletion bin/wp-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
# https://github.com/ideasonpurpose/docker-wordpress-dev
#
# Version: 1.4.0
# Version: 1.5.0

# This is a WordPress specific boilerplate assembler
# After running this script, the target directory will be fully configured for local WordPress
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docker-wordpress-dev",
"version": "1.4.0",
"version": "1.5.0",
"private": true,
"description": "Docker-based local development environment for WordPress projects",
"repository": "https://github.com/ideasonpurpose/docker-wordpress-dev",
Expand Down

0 comments on commit 8c34452

Please sign in to comment.