Skip to content

Commit 72549ba

Browse files
committed
0.7.14
1 parent 70d2a14 commit 72549ba

File tree

7 files changed

+20
-10
lines changed

7 files changed

+20
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@ 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.7.14](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.7.13...v0.7.14)
8+
9+
- Permissions and shell script cleanup. Closes #22 [`#22`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/22)
10+
- acf-json permissions repair. Closes #24 [`#24`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/24)
11+
- bump npm deps [`70d2a14`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/70d2a14aa82051ee49d9428c4899cff3566aafbf)
12+
- bump docker image versions [`163dec4`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/163dec4bee407c7deb409e242ce7f878cee0a5dc)
13+
- minor version bumps [`100a991`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/100a991f93c4cfb56fff68a7dfae8f3edacf4916)
14+
715
#### [v0.7.13](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.7.12...v0.7.13)
816

17+
> 15 August 2021
18+
919
- bump docker-build to 0.9.4 [`fe03f07`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/fe03f0765124f63107b30649fca15d0f6e66053e)
1020

1121
#### [v0.7.12](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.7.11...v0.7.12)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Check for the latest tags there
33
FROM wordpress:5.8.0-php7.4-apache
44

5-
LABEL version="0.7.13"
5+
LABEL version="0.7.14"
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,6 +1,6 @@
11
# WordPress local development with Docker
22

3-
#### Version 0.7.13
3+
#### Version 0.7.14
44

55
[![dockeri.co](https://dockeri.co/image/ideasonpurpose/wordpress)](https://hub.docker.com/r/ideasonpurpose/wordpress)<br>
66
[![Push to Docker Hub](https://github.com/ideasonpurpose/docker-wordpress-dev/workflows/Push%20to%20Docker%20Hub/badge.svg)](https://github.com/ideasonpurpose/docker-wordpress-dev)
@@ -16,7 +16,7 @@ To update an existing project or start a new one, run the following commands in
1616
##### macOS, Linux & Windows PowerShell
1717

1818
```
19-
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:0.7.13 init
19+
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:0.7.14 init
2020
npm run bootstrap
2121
```
2222

@@ -25,7 +25,7 @@ _NOTE: If **~/.composer** dosn't exist, Docker will create it with root ownershi
2525
##### Windows Command Prompt
2626

2727
```
28-
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:0.7.13 init
28+
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:0.7.14 init
2929
npm run bootstrap
3030
```
3131

boilerplate-tooling/docker-compose-util.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ services:
109109
fi'
110110
repair-permissions:
111111
# image: ideasonpurpose/wordpress:dev
112-
image: ideasonpurpose/wordpress:0.7.13
112+
image: ideasonpurpose/wordpress:0.7.14
113113
volumes:
114114
- .:/usr/src/site
115115
environment:
@@ -118,7 +118,7 @@ services:
118118

119119
pull:
120120
# image: ideasonpurpose/wordpress:dev
121-
image: ideasonpurpose/wordpress:0.7.13
121+
image: ideasonpurpose/wordpress:0.7.14
122122
volumes:
123123
- .:/usr/src/site
124124
entrypoint: |

boilerplate-tooling/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
wordpress:
2020
depends_on:
2121
- db
22-
image: ideasonpurpose/wordpress:0.7.13
22+
image: ideasonpurpose/wordpress:0.7.14
2323
# image: ideasonpurpose/wordpress:dev
2424
restart: always
2525
volumes:

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.7.13",
3+
"version": "0.7.14",
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)