Skip to content

Commit 9510e25

Browse files
committed
Merge branch 'release-5.0.3' into stable
2 parents 87876ea + dbddb43 commit 9510e25

File tree

9 files changed

+57
-60
lines changed

9 files changed

+57
-60
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project follows Wordpress versioning.
66

7+
## [5.0.3] - 2019-01-30
8+
### Changed
9+
- Upgrade Wordpress version to 5.0.3
10+
711
## [4.9.7] - 2018-07-28
812
### Changed
913
- Upgrade Wordpress version to 4.9.7
@@ -98,6 +102,9 @@ and this project follows Wordpress versioning.
98102
## 0.1.0 - 2015-02-23
99103
Initial release
100104

105+
[5.0.3]: https://github.com/osixia/docker-wordpress/compare/v4.9.7...v5.0.3
106+
[4.9.7]: https://github.com/osixia/docker-wordpress/compare/v4.9.6...v4.9.7
107+
[4.9.6]: https://github.com/osixia/docker-wordpress/compare/v4.9.5...v4.9.6
101108
[4.9.5]: https://github.com/osixia/docker-wordpress/compare/v4.9.4...v4.9.5
102109
[4.9.4]: https://github.com/osixia/docker-wordpress/compare/v4.9.2...v4.9.4
103110
[4.9.2]: https://github.com/osixia/docker-wordpress/compare/v4.9.1...v4.9.2

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/wordpress
2-
VERSION = 4.9.7
2+
VERSION = 5.0.3
33

44
.PHONY: build build-nocache test tag-latest push push-latest release git-tag-version
55

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A docker image to run wordpress
66

77
[hub]: https://hub.docker.com/r/osixia/wordpress/
88

9-
Latest release: 4.9.7 - Wordpress 4.9.7 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/wordpress) 
9+
Latest release: 5.0.3 - Wordpress 5.0.3 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/wordpress) 
1010

1111
### Under the hood: osixia/web-baseimage
1212

image/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM osixia/web-baseimage:1.1.1
22

33
# Wordpress version
4-
ARG WORDPRESS_VERSION=4.9.7
5-
ARG WORDPRESS_MD5=50efc5822bf550e9a526b9b9f4469b0d
4+
ARG WORDPRESS_VERSION=5.0.3
5+
ARG WORDPRESS_MD5=83bec78836aabac08f769d50f1bffe5d
66

77
# MariaDB version
88
ARG MARIADB_MAJOR=10.3
@@ -12,7 +12,7 @@ ARG MARIADB_MAJOR=10.3
1212
# php7.0-fpm install will detect apache2 and configure it
1313

1414
# Add MariaDB repository
15-
RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8 \
15+
RUN apt-key adv --no-tty --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8 \
1616
&& echo "deb http://ftp.igh.cnrs.fr/pub/mariadb/repo/$MARIADB_MAJOR/debian stretch main" > /etc/apt/sources.list.d/mariadb.list \
1717
&& { \
1818
echo 'Package: *'; \

image/service/backup/assets/tool/wordpress-backup

+11-13
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,27 @@ backupFileSuffix="-wordpress.tar.gz"
66
backupDbSuffix="-wordpress-db.tar.gz"
77
databaseFile="database.sql"
88

9-
source /container/run/environment.sh
9+
. /container/run/environment.sh
1010

1111
# delete backups that are over $WORDPRESS_BACKUP_TTL days
12-
find $backupPath -type f -mtime +$WORDPRESS_BACKUP_TTL -exec rm {} \;
12+
find "${backupPath}" -type f -mtime +"${WORDPRESS_BACKUP_TTL}" -exec rm {} \;
1313

1414
# date format for the dump file name
1515
dateFileFormat="+%Y%m%dT%H%M%S"
16-
backupFilePath="$backupPath/$(date "$dateFileFormat")$backupFileSuffix"
16+
backupFilePath="${backupPath}/$(date "${dateFileFormat}")${backupFileSuffix}"
1717

1818
# save config and plugins except default ones
19-
tar -czf $backupFilePath -C / var/www/wordpress
20-
chmod 600 $backupFilePath
19+
tar -czf "${backupFilePath}" -C / var/www/wordpress
20+
chmod 600 "${backupFilePath}"
2121

2222
# backup database
2323
. /container/service/backup/assets/tool/wordpress-get-db-params
24-
rm -rf $databaseFile || true
24+
rm -rf "${databaseFile}" || true
2525

26-
mysqldump -u $databaseUser -p$databasePassword --host $host $database > $databaseFile
26+
mysqldump -u "${databaseUser}" -p"${databasePassword}" --host "${host}" "${database}" > "${databaseFile}"
2727

28-
backupFilePath="$backupPath/$(date "$dateFileFormat")$backupDbSuffix"
29-
tar -czf $backupFilePath $databaseFile
30-
chmod 600 $backupFilePath
28+
backupFilePath="${backupPath}/$(date "${dateFileFormat}")${backupDbSuffix}"
29+
tar -czf "${backupFilePath}" "${databaseFile}"
30+
chmod 600 "${backupFilePath}"
3131

32-
rm -rf $databaseFile
33-
34-
exit 0
32+
rm -rf "${databaseFile}"

image/service/backup/assets/tool/wordpress-restore

+8-10
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,25 @@ databaseFile="database.sql"
88

99
for file in "$@"
1010
do
11-
echo "Processing file $file"
11+
echo "Processing file ${file}"
1212

13-
if $(echo "$file" | grep -q -e "$backupFileSuffix"); then
13+
if echo "${file}" | grep -q -e "${backupFileSuffix}"; then
1414
echo "Restore wordpress files"
15-
tar -xvzf $backupPath/$file -C /
15+
tar -xvzf "${backupPath}/${file}" -C /
1616
echo "done :)"
17-
elif $(echo "$file" | grep -q -e "$backupDbSuffix"); then
17+
elif echo "${file}" | grep -q -e "${backupDbSuffix}"; then
1818
echo "Restore wordpress database"
1919
. /container/service/backup/assets/tool/wordpress-get-db-params
2020

21-
rm -rf $databaseFile || true
22-
tar -xvzf $backupPath/$file
21+
rm -rf "${databaseFile}" || true
22+
tar -xvzf "${backupPath}/${file}"
2323

24-
mysql -u $databaseUser -p$databasePassword --host $host $database < $databaseFile
24+
mysql -u "${databaseUser}" -p"${databasePassword}" --host "${host}" "${database}" < "${databaseFile}"
2525

26-
rm -rf $databaseFile
26+
rm -rf "${databaseFile}"
2727

2828
echo "done :)"
2929
else
3030
echo "Error: Unknown file type"
3131
fi
3232
done
33-
34-
exit 0

image/service/backup/startup.sh

+5-7
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,18 @@
55
log-helper level eq trace && set -x
66

77
# install image tools
8-
ln -sf ${CONTAINER_SERVICE_DIR}/backup/assets/tool/* /sbin/
8+
ln -sf "${CONTAINER_SERVICE_DIR}"/backup/assets/tool/* /sbin/
99

1010
# add cron jobs
11-
ln -sf ${CONTAINER_SERVICE_DIR}/backup/assets/cronjobs /etc/cron.d/backup
12-
chmod 600 ${CONTAINER_SERVICE_DIR}/backup/assets/cronjobs
11+
ln -sf "${CONTAINER_SERVICE_DIR}/backup/assets/cronjobs" /etc/cron.d/backup
12+
chmod 600 "${CONTAINER_SERVICE_DIR}/backup/assets/cronjobs"
1313

1414
FIRST_START_DONE="${CONTAINER_STATE_DIR}/docker-backup-backup-first-start-done"
1515
# container first start
1616
if [ ! -e "$FIRST_START_DONE" ]; then
1717

1818
# adapt cronjobs file
19-
sed -i "s|{{ WORDPRESS_BACKUP_CRON_EXP }}|${WORDPRESS_BACKUP_CRON_EXP}|g" ${CONTAINER_SERVICE_DIR}/backup/assets/cronjobs
19+
sed -i "s|{{ WORDPRESS_BACKUP_CRON_EXP }}|${WORDPRESS_BACKUP_CRON_EXP}|g" "${CONTAINER_SERVICE_DIR}/backup/assets/cronjobs"
2020

21-
touch $FIRST_START_DONE
21+
touch "${FIRST_START_DONE}"
2222
fi
23-
24-
exit 0

image/service/ldap-client/startup.sh

+12-14
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,29 @@ www_data_homedir=$( getent passwd "www-data" | cut -d: -f6 )
88

99
FIRST_START_DONE="${CONTAINER_STATE_DIR}/docker-ldap-client-first-start-done"
1010
# container first start
11-
if [ ! -e "$FIRST_START_DONE" ]; then
11+
if [ ! -e "${FIRST_START_DONE}" ]; then
1212

1313
if [ "${WORDPRESS_LDAP_CLIENT_TLS,,}" == "true" ]; then
1414

1515
# generate a certificate and key if files don't exists
1616
# https://github.com/osixia/docker-light-baseimage/blob/stable/image/service-available/:ssl-tools/assets/tool/ssl-helper
17-
ssl-helper ${LDAP_CLIENT_SSL_HELPER_PREFIX} "${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_CRT_FILENAME}" "${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_KEY_FILENAME}" "${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_CA_CRT_FILENAME}"
17+
ssl-helper "${LDAP_CLIENT_SSL_HELPER_PREFIX}" "${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_CRT_FILENAME}" "${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_KEY_FILENAME}" "${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_CA_CRT_FILENAME}"
1818

1919
# ldap client config
2020
sed -i --follow-symlinks "s,TLS_CACERT.*,TLS_CACERT ${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_CA_CRT_FILENAME},g" /etc/ldap/ldap.conf
21-
echo "TLS_REQCERT $WORDPRESS_LDAP_CLIENT_TLS_REQCERT" >> /etc/ldap/ldap.conf
22-
cp -f /etc/ldap/ldap.conf ${CONTAINER_SERVICE_DIR}/ldap-client/assets/ldap.conf
21+
echo "TLS_REQCERT ${WORDPRESS_LDAP_CLIENT_TLS_REQCERT}" >> /etc/ldap/ldap.conf
22+
cp -f /etc/ldap/ldap.conf "${CONTAINER_SERVICE_DIR}/ldap-client/assets/ldap.conf"
2323

24-
[[ -f "$www_data_homedir/.ldaprc" ]] && rm -f $www_data_homedir/.ldaprc
25-
echo "TLS_CERT ${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_CRT_FILENAME}" > $www_data_homedir/.ldaprc
26-
echo "TLS_KEY ${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_KEY_FILENAME}" >> $www_data_homedir/.ldaprc
27-
cp -f $www_data_homedir/.ldaprc ${CONTAINER_SERVICE_DIR}/ldap-client/assets/.ldaprc
24+
[[ -f "${www_data_homedir}/.ldaprc" ]] && rm -f "${www_data_homedir}/.ldaprc"
25+
echo "TLS_CERT ${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_CRT_FILENAME}" > "${www_data_homedir}/.ldaprc"
26+
echo "TLS_KEY ${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/${WORDPRESS_LDAP_CLIENT_TLS_KEY_FILENAME}" >> "${www_data_homedir}/.ldaprc"
27+
cp -f "${www_data_homedir}/.ldaprc" "${CONTAINER_SERVICE_DIR}/ldap-client/assets/.ldaprc"
2828

29-
chown www-data:www-data -R ${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/
29+
chown www-data:www-data -R "${CONTAINER_SERVICE_DIR}/ldap-client/assets/certs/"
3030
fi
3131

32-
touch $FIRST_START_DONE
32+
touch "${FIRST_START_DONE}"
3333
fi
3434

35-
ln -sf ${CONTAINER_SERVICE_DIR}/ldap-client/assets/.ldaprc $www_data_homedir/.ldaprc
36-
ln -sf ${CONTAINER_SERVICE_DIR}/ldap-client/assets/ldap.conf /etc/ldap/ldap.conf
37-
38-
exit 0
35+
ln -sf "${CONTAINER_SERVICE_DIR}/ldap-client/assets/.ldaprc" "${www_data_homedir}/.ldaprc"
36+
ln -sf "${CONTAINER_SERVICE_DIR}/ldap-client/assets/ldap.conf" /etc/ldap/ldap.conf

image/service/wordpress/startup.sh

+9-11
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ if [ "${WORDPRESS_HTTPS,,}" == "true" ]; then
1616

1717
# generate a certificate and key if files don't exists
1818
# https://github.com/osixia/docker-light-baseimage/blob/stable/image/service-available/:ssl-tools/assets/tool/ssl-helper
19-
ssl-helper ${WORDPRESS_SSL_HELPER_PREFIX} "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/certs/$WORDPRESS_SSL_CRT_FILENAME" "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/certs/$WORDPRESS_SSL_KEY_FILENAME" "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/certs/$WORDPRESS_SSL_CA_CRT_FILENAME"
19+
ssl-helper "${WORDPRESS_SSL_HELPER_PREFIX}" "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/certs/$WORDPRESS_SSL_CRT_FILENAME" "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/certs/$WORDPRESS_SSL_KEY_FILENAME" "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/certs/$WORDPRESS_SSL_CA_CRT_FILENAME"
2020

2121
# add CA certificat config if CA cert exists
2222
if [ -e "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/certs/$WORDPRESS_SSL_CA_CRT_FILENAME" ]; then
23-
sed -i "s/#SSLCACertificateFile/SSLCACertificateFile/g" ${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/https.conf
23+
sed -i "s/#SSLCACertificateFile/SSLCACertificateFile/g" "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/https.conf"
2424
fi
2525

26-
ln -sf ${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/https.conf /etc/apache2/sites-available/wordpress.conf
26+
ln -sf "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/https.conf" /etc/apache2/sites-available/wordpress.conf
2727
#
2828
# HTTP config
2929
#
3030
else
3131
log-helper info "Set apache2 http config..."
32-
ln -sf ${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/http.conf /etc/apache2/sites-available/wordpress.conf
32+
ln -sf "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/http.conf" /etc/apache2/sites-available/wordpress.conf
3333
fi
3434

3535
if [ "${WORDPRESS_DISABLE_XMLRPC,,}" == "true" ]; then
@@ -62,34 +62,34 @@ fi
6262
rm -rf /var/www/wordpress_bootstrap
6363

6464
# install plugins and themes
65-
cp --remove-destination -Rf ${CONTAINER_SERVICE_DIR}/wordpress/assets/wp-content/. /var/www/wordpress/wp-content
65+
cp --remove-destination -Rf "${CONTAINER_SERVICE_DIR}"/wordpress/assets/wp-content/. /var/www/wordpress/wp-content
6666

6767
# if there is no config
6868
if [ ! -e "/var/www/wordpress/wp-config.php" ] && [ -e "${CONTAINER_SERVICE_DIR}/wordpress/assets/config/wp-config.php" ]; then
6969

7070
log-helper debug "link ${CONTAINER_SERVICE_DIR}/wordpress/assets/config/wp-config.php to /var/www/wordpress/wp-config.php"
71-
ln -sf ${CONTAINER_SERVICE_DIR}/wordpress/assets/config/wp-config.php /var/www/wordpress/wp-config.php
71+
ln -sf "${CONTAINER_SERVICE_DIR}/wordpress/assets/config/wp-config.php" /var/www/wordpress/wp-config.php
7272

7373
fi
7474

7575
# container first start
7676
if [ ! -e "$FIRST_START_DONE" ]; then
7777

7878
# Add .htaccess
79-
[ -e "/var/www/wordpress/.htaccess" ] || cp -f ${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/.htaccess /var/www/wordpress/.htaccess
79+
[ -e "/var/www/wordpress/.htaccess" ] || cp -f "${CONTAINER_SERVICE_DIR}/wordpress/assets/apache2/.htaccess" /var/www/wordpress/.htaccess
8080

8181
# set new install default theme
8282
if [ -n "$WORDPRESS_DEFAULT_THEME" ]; then
8383
sed -i "s/define( 'WP_DEFAULT_THEME', '[^']*'/define( 'WP_DEFAULT_THEME', '${WORDPRESS_DEFAULT_THEME}'/g" /var/www/wordpress/wp-includes/default-constants.php
8484
fi
8585

86-
cp -f ${CONTAINER_SERVICE_DIR}/wordpress/assets/php7.0-fpm/opcache.ini /etc/php/7.0/fpm/conf.d/opcache.ini
86+
cp -f "${CONTAINER_SERVICE_DIR}/wordpress/assets/php7.0-fpm/opcache.ini" /etc/php/7.0/fpm/conf.d/opcache.ini
8787

8888
if [ "${WORDPRESS_PRODUCTION}" = "true" ]; then
8989
sed -i "s/;opcache.validate_timestamps/opcache.validate_timestamps/g" /etc/php/7.0/fpm/conf.d/opcache.ini
9090
fi
9191

92-
touch $FIRST_START_DONE
92+
touch "${FIRST_START_DONE}"
9393
fi
9494

9595
# Fix file permission
@@ -104,5 +104,3 @@ if [ -e "/var/www/wordpress/wp-config.php" ]; then
104104
chmod 400 /var/www/wordpress/wp-config.php
105105

106106
fi
107-
108-
exit 0

0 commit comments

Comments
 (0)