Skip to content

Commit fbaa8be

Browse files
committed
0.10.8
1 parent 83ac8a3 commit fbaa8be

File tree

10 files changed

+18
-12
lines changed

10 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
44

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

7+
#### [v0.10.8](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.10.7...v0.10.8)
8+
9+
- bump base WP image to 6.0.2 [`83ac8a3`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/83ac8a30923b3b9d5e9a5657cb101d78f149e047)
10+
711
#### [v0.10.7](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.10.6...v0.10.7)
812

13+
> 26 August 2022
14+
915
- update WebGrind launch message. Closes #47 [`#47`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/47)
1016
- Bump prettier and MariaDB versions [`c0c48a2`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/c0c48a2319a3e3e32c8c04b16adff966fdf47e95)
1117
- Bump base image to WP 6.0.1 [`e40d7fa`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/e40d7fa46cfe4521b9e9debc0b03b784175c92c2)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Manual updates also must change wp-version.json
66
FROM wordpress:6.0.2-php8.0-apache
77

8-
LABEL version="0.10.7"
8+
LABEL version="0.10.8"
99

1010
# Add `wp` user and group, then add `www-data` user to `wp` group
1111
RUN addgroup --gid 1000 wp \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# WordPress local development with Docker
22

33
<h4>
4-
Version 0.10.7
4+
Version 0.10.8
55
<!-- WPVERSION -->- WordPress 6.0.2
66
</h4>
77

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

2323
```
24-
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:0.10.7 init
24+
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:0.10.8 init
2525
npm run bootstrap
2626
```
2727

@@ -30,7 +30,7 @@ _NOTE: If **~/.composer** doesn't exist, Docker will create it with root ownersh
3030
##### Windows Command Prompt
3131

3232
```
33-
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:0.10.7 init
33+
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:0.10.8 init
3434
npm run bootstrap
3535
```
3636

bin/docker-entrypoint-iop.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 0.10.7
6+
# Version: 0.10.8
77

88
RESET="\033[0m"
99
BOLD="\033[1m"

bin/getting-started.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 0.10.7
6+
# Version: 0.10.8
77

88
# Getting Started message
99

bin/permissions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 0.10.7
6+
# Version: 0.10.8
77

88
# This script corrects permissions of known files in our WordPress boilerplate.
99
# The script is run from Docker as root, with a $OWNER_GROUP envvar set to "$UID:$GID"

bin/pull.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 0.10.7
6+
# Version: 0.10.8
77

88
# style helpers
99
RESET="\033[0m"

bin/wp-init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 0.10.7
6+
# Version: 0.10.8
77

88
# This is a WordPress specific boilerplate assembler
99
# After running this script, the target directory will be fully configured for local WordPress

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docker-wordpress-dev",
3-
"version": "0.10.7",
3+
"version": "0.10.8",
44
"private": true,
55
"description": "Docker-based local development environment for WordPress projects",
66
"repository": "https://github.com/ideasonpurpose/docker-wordpress-dev",

0 commit comments

Comments
 (0)