Skip to content

Commit 46141e4

Browse files
committed
0.7.9
1 parent 0b340d0 commit 46141e4

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.9](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.7.8...v0.7.9)
8+
9+
- umask: make new files group-writeable. Fixes #25 [`#25`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/25)
10+
- Disable short open tags. Closes #27 [`#27`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/27)
11+
- Blind attempt at auto-release on tag push [`786624e`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/786624eede37e5dab86e2a1f64f97136e3bd1835)
12+
- bump deps [`0b340d0`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/0b340d0502fa3d70ea844a0b76f0fa336bdc9e3e)
13+
- add getting-started note [`3b04f6d`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/3b04f6d698c1a445624594de57b5be84e49018e0)
14+
715
#### [v0.7.8](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.7.7...v0.7.8)
816

17+
> 14 May 2021
18+
919
- forever bumpin' those deps [`b203fec`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/b203feceab0be017f0ecac8cd8b84bfd12f149c2)
1020
- npm audit fix [`9f586e3`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/9f586e32867e88a391dbec8b66fe7b1a2a5c8793)
1121
- pull script permissions fix [`856c3c5`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/856c3c5941c2e7127c1eeaeea7cdb2ff379db98c)

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.8"
5+
LABEL version="0.7.9"
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.8
3+
#### Version 0.7.9
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.8 init
19+
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:0.7.9 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.8 init
28+
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:0.7.9 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
@@ -105,7 +105,7 @@ services:
105105
106106
repair-permissions:
107107
# image: ideasonpurpose/wordpress:dev
108-
image: ideasonpurpose/wordpress:0.7.8
108+
image: ideasonpurpose/wordpress:0.7.9
109109
volumes:
110110
- .:/usr/src/site
111111
environment:
@@ -114,7 +114,7 @@ services:
114114

115115
pull:
116116
# image: ideasonpurpose/wordpress:dev
117-
image: ideasonpurpose/wordpress:0.7.8
117+
image: ideasonpurpose/wordpress:0.7.9
118118
volumes:
119119
- .:/usr/src/site
120120
entrypoint: |

boilerplate-tooling/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
wordpress:
2222
depends_on:
2323
- db
24-
image: ideasonpurpose/wordpress:0.7.8
24+
image: ideasonpurpose/wordpress:0.7.9
2525
# image: ideasonpurpose/wordpress:dev
2626
restart: always
2727
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.8",
3+
"version": "0.7.9",
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)