Skip to content

Commit 6df3ad1

Browse files
committed
0.9.6
1 parent 356f8d0 commit 6df3ad1

File tree

11 files changed

+23
-15
lines changed

11 files changed

+23
-15
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ 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.9.6](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.9.5...v0.9.6)
8+
9+
- service-ports, fix webgrind, README, MOTD tweaks [`4d0917c`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/4d0917ca3474ef74c252c45ec17fbdd668475a11)
10+
- bump base image to 5.9.2 [`fe94f58`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/fe94f58722a6d6e611256ec6a60705e6d34a6553)
11+
- increase visibility of WordPress version in README [`356f8d0`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/356f8d028ea6296c255ef15ea4f6319c19255c42)
12+
713
#### [v0.9.5](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.9.4...v0.9.5)
814

15+
> 14 March 2022
16+
917
- Use Intl from base image . Closes #36 [`#36`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/36)
1018
- Refactor bump script, validate tags. Closes #40 [`#40`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/40)
1119
- udpate bump script plus notes about validation [`1eea447`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/1eea447dcb7365e113a43ccabcb5b5c1592e9c8a)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://hub.docker.com/_/wordpress/
33
FROM wordpress:5.9.2-php8.0-apache
44

5-
LABEL version="0.9.5"
5+
LABEL version="0.9.6"
66

77
# Add `wp` user and group, then add `www-data` user to `wp` group
88
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.0.0
4+
Version 0.9.6
55
- WordPress 5.9.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.9.5 init
24+
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:0.9.6 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.9.5 init
33+
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:0.9.6 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.9.5
6+
# Version: 0.9.6
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.9.5
6+
# Version: 0.9.6
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.9.5
6+
# Version: 0.9.6
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.9.5
6+
# Version: 0.9.6
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.9.5
6+
# Version: 0.9.6
77

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

boilerplate-tooling/docker-compose-util.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
- db
88
- wordpress
99
# image: ideasonpurpose/wordpress:dev
10-
image: ideasonpurpose/wordpress:0.9.5
10+
image: ideasonpurpose/wordpress:0.9.6
1111
user: www-data
1212
volumes:
1313
- wp_data:/var/www/html
@@ -147,7 +147,7 @@ services:
147147
# Project info: https://github.com/ideasonpurpose/docker-wordpress-dev
148148
repair-permissions:
149149
# image: ideasonpurpose/wordpress:dev
150-
image: ideasonpurpose/wordpress:0.9.5
150+
image: ideasonpurpose/wordpress:0.9.6
151151
volumes:
152152
- .:/usr/src/site
153153
environment:
@@ -160,7 +160,7 @@ services:
160160
# Project info: https://github.com/ideasonpurpose/docker-wordpress-dev
161161
pull:
162162
# image: ideasonpurpose/wordpress:dev
163-
image: ideasonpurpose/wordpress:0.9.5
163+
image: ideasonpurpose/wordpress:0.9.6
164164
volumes:
165165
- .:/usr/src/site
166166
entrypoint: |

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.

0 commit comments

Comments
 (0)