Skip to content

Commit a3c75eb

Browse files
committed
0.9.1
1 parent 6691d3d commit a3c75eb

File tree

12 files changed

+22
-16
lines changed

12 files changed

+22
-16
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.9.1](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.9.0...v0.9.1)
8+
9+
- fix env var in action [`6691d3d`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/6691d3d834aa9187528d7be93f66cffcec04d4d4)
10+
711
#### [v0.9.0](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v0.8.1...v0.9.0)
812

13+
> 13 March 2022
14+
915
- WP version tags, bump script and action updates [`ee1acbc`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/ee1acbc71a5b29333b777d413d0090fa5f099801)
1016
- placeholder version headers for shell scripts [`51a91f3`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/51a91f3be8409c592f025da377946481f4ee6558)
1117
- bump deps [`c495763`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/c495763ff2bcb5ce7929677b5d3a4a5ae2d9fd5a)

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.0"
5+
LABEL version="0.9.1"
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.9.0
3+
#### Version 0.9.1
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)
@@ -18,7 +18,7 @@ To update an existing project or start a new one, run the following commands in
1818
##### macOS, Linux & Windows PowerShell
1919

2020
```
21-
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:0.9.0 init
21+
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:0.9.1 init
2222
npm run bootstrap
2323
```
2424

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

2929
```
30-
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:0.9.0 init
30+
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:0.9.1 init
3131
npm run bootstrap
3232
```
3333

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.0
6+
# Version: 0.9.1
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.0
6+
# Version: 0.9.1
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.0
6+
# Version: 0.9.1
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.0
6+
# Version: 0.9.1
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.0
6+
# Version: 0.9.1
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.0
10+
image: ideasonpurpose/wordpress:0.9.1
1111
user: www-data
1212
volumes:
1313
- wp_data:/var/www/html
@@ -127,7 +127,7 @@ services:
127127
# Project info: https://github.com/ideasonpurpose/docker-wordpress-dev
128128
repair-permissions:
129129
# image: ideasonpurpose/wordpress:dev
130-
image: ideasonpurpose/wordpress:0.9.0
130+
image: ideasonpurpose/wordpress:0.9.1
131131
volumes:
132132
- .:/usr/src/site
133133
environment:
@@ -140,7 +140,7 @@ services:
140140
# Project info: https://github.com/ideasonpurpose/docker-wordpress-dev
141141
pull:
142142
# image: ideasonpurpose/wordpress:dev
143-
image: ideasonpurpose/wordpress:0.9.0
143+
image: ideasonpurpose/wordpress:0.9.1
144144
volumes:
145145
- .:/usr/src/site
146146
entrypoint: |

boilerplate-tooling/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
depends_on:
2525
- db
2626
# image: ideasonpurpose/wordpress:dev
27-
image: ideasonpurpose/wordpress:0.9.0
27+
image: ideasonpurpose/wordpress:0.9.1
2828
restart: always
2929
volumes:
3030
- wp_data:/var/www/html

0 commit comments

Comments
 (0)