File tree 4 files changed +26
-4
lines changed
4 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
- ## [ Unreleased] ( https://github.com/passbolt/passbolt_docker/compare/v1.6.5+1...HEAD )
5
+ ## [ Unreleased] ( https://github.com/passbolt/passbolt_docker/compare/v1.6.9...HEAD )
6
+
7
+ ## [ 1.6.9] ( https://github.com/passbolt/passbolt_docker/compare/v1.6.5+1...v1.6.9 ) - 2018-01-14
8
+
9
+ This release provides the last passbolt_api 1.x series release along with several pull requests
10
+ and fixes.
11
+
12
+ ### Fixed
13
+
14
+ - Unable to access default installation with http [ #59 ] ( https://github.com/passbolt/passbolt_docker/issues/59 )
15
+ - Check and correct the permissions and ownership of /var/www/passbolt [ #67 ] ( https://github.com/passbolt/passbolt_docker/issues/67 )
16
+ - cp: Unrecognized option -T [ #75 ] ( https://github.com/passbolt/passbolt_docker/issues/75 )
17
+ - turn URL config independent from SSL var [ #76 ] ( https://github.com/passbolt/passbolt_docker/pull/76 )
18
+ - Set the default MySQL port to 3306 [ #77 ] ( https://github.com/passbolt/passbolt_docker/pull/77 )
19
+ - Add environment variable to set email client [ #81 ] ( https://github.com/passbolt/passbolt_docker/pull/81 )
20
+
6
21
7
22
## [ 1.6.5+1] ( https://github.com/passbolt/passbolt_docker/compare/v1.6.5...v1.6.5+1 ) - 2017-11-14
8
23
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM alpine:3.6
2
2
3
3
LABEL maintainer=
"[email protected] "
4
4
5
- ENV PASSBOLT_VERSION 1.6.5
5
+ ENV PASSBOLT_VERSION 1.6.9
6
6
ENV PASSBOLT_URL https://github.com/passbolt/passbolt_api/archive/v${PASSBOLT_VERSION}.tar.gz
7
7
8
8
ARG BASE_PHP_DEPS="php5-curl \
@@ -38,6 +38,7 @@ ARG PHP_GNUPG_DEPS="php5-dev \
38
38
39
39
RUN apk add --no-cache $BASE_PHP_DEPS \
40
40
sed \
41
+ coreutils \
41
42
tar \
42
43
bash \
43
44
curl \
Original file line number Diff line number Diff line change @@ -166,6 +166,12 @@ php_fpm_setup() {
166
166
sed -i ' /^include\s/ s:^:#:' /etc/php5/fpm.d/www.conf
167
167
}
168
168
169
+ check_permissions () {
170
+ chown -R nginx:nginx /var/www/passbolt
171
+ chmod -R +w /var/www/passbolt/app/tmp
172
+ chmod +w /var/www/passbolt/app/webroot/img/public
173
+ }
174
+
169
175
email_cron_job () {
170
176
local root_crontab=' /etc/crontabs/root'
171
177
local cron_task_dir=' /etc/periodic/1min'
@@ -184,7 +190,6 @@ email_cron_job() {
184
190
crond -f -c /etc/crontabs &
185
191
}
186
192
187
-
188
193
if [ ! -f $gpg_private_key ] && [ ! -L $gpg_private_key ] || \
189
194
[ ! -f $gpg_public_key ] && [ ! -L $gpg_public_key ]; then
190
195
gpg_gen_key
@@ -213,6 +218,8 @@ if [ ! -f $ssl_key ] && [ ! -L $ssl_key ] && \
213
218
gen_ssl_cert
214
219
fi
215
220
221
+ check_permissions
222
+
216
223
php_fpm_setup
217
224
218
225
install
Original file line number Diff line number Diff line change 4
4
client_body_buffer_size 100K;
5
5
client_header_buffer_size 1k;
6
6
client_max_body_size 100k;
7
- large_client_header_buffers 2 1k;
8
7
9
8
client_body_timeout 10;
10
9
client_header_timeout 10;
You can’t perform that action at this time.
0 commit comments