File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
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/v2.7.0...HEAD )
5
+ ## [ Unreleased] ( https://github.com/passbolt/passbolt_docker/compare/v2.7.1...HEAD )
6
+
7
+ ## [ 2.7.1] ( https://github.com/passbolt/passbolt_docker/compare/v2.7.0...v2.7.1 ) - 2019-02-13
8
+
9
+ ### Added
10
+
11
+ - Use php.ini-production for saner defaults in php
6
12
7
13
## [ 2.7.0] ( https://github.com/passbolt/passbolt_docker/compare/v2.5.0...v2.7.0 ) - 2019-02-12
8
14
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM php:7.2-fpm
2
2
3
3
LABEL maintainer=
"[email protected] "
4
4
5
- ARG PASSBOLT_VERSION="2.7.0 "
5
+ ARG PASSBOLT_VERSION="2.7.1 "
6
6
ARG PASSBOLT_URL="https://github.com/passbolt/passbolt_api/archive/v${PASSBOLT_VERSION}.tar.gz"
7
7
8
8
ARG PHP_EXTENSIONS="gd \
@@ -71,7 +71,9 @@ RUN apt-get update \
71
71
&& rm -rf /var/lib/apt/lists/* \
72
72
&& rm /usr/local/bin/composer \
73
73
&& echo 'php_flag[expose_php] = off' > /usr/local/etc/php-fpm.d/expose.conf \
74
- && sed -i 's/# server_tokens/server_tokens/' /etc/nginx/nginx.conf
74
+ && sed -i 's/# server_tokens/server_tokens/' /etc/nginx/nginx.conf \
75
+ && mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
76
+
75
77
76
78
COPY conf/passbolt.conf /etc/nginx/conf.d/default.conf
77
79
COPY conf/supervisor/*.conf /etc/supervisor/conf.d/
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ services:
10
10
- " 127.0.0.1:3306:3306"
11
11
12
12
passbolt :
13
- image : passbolt/passbolt:2.7.0 -pro-debian
13
+ image : passbolt/passbolt:2.7.1 -pro-debian
14
14
tty : true
15
15
depends_on :
16
16
- db
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ services:
10
10
- " 127.0.0.1:3306:3306"
11
11
12
12
passbolt :
13
- image : passbolt/passbolt:2.7.0 -debian
13
+ image : passbolt/passbolt:2.7.1 -debian
14
14
tty : true
15
15
depends_on :
16
16
- db
You can’t perform that action at this time.
0 commit comments