Skip to content

Commit 8e1c638

Browse files
committed
Merge branch 'release/v2.7.1'
2 parents 15838ae + 8d9a1b9 commit 8e1c638

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

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
612

713
## [2.7.0](https://github.com/passbolt/passbolt_docker/compare/v2.5.0...v2.7.0) - 2019-02-12
814

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM php:7.2-fpm
22

33
LABEL maintainer="[email protected]"
44

5-
ARG PASSBOLT_VERSION="2.7.0"
5+
ARG PASSBOLT_VERSION="2.7.1"
66
ARG PASSBOLT_URL="https://github.com/passbolt/passbolt_api/archive/v${PASSBOLT_VERSION}.tar.gz"
77

88
ARG PHP_EXTENSIONS="gd \
@@ -71,7 +71,9 @@ RUN apt-get update \
7171
&& rm -rf /var/lib/apt/lists/* \
7272
&& rm /usr/local/bin/composer \
7373
&& 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+
7577

7678
COPY conf/passbolt.conf /etc/nginx/conf.d/default.conf
7779
COPY conf/supervisor/*.conf /etc/supervisor/conf.d/

docker-compose-pro.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- "127.0.0.1:3306:3306"
1111

1212
passbolt:
13-
image: passbolt/passbolt:2.7.0-pro-debian
13+
image: passbolt/passbolt:2.7.1-pro-debian
1414
tty: true
1515
depends_on:
1616
- db

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- "127.0.0.1:3306:3306"
1111

1212
passbolt:
13-
image: passbolt/passbolt:2.7.0-debian
13+
image: passbolt/passbolt:2.7.1-debian
1414
tty: true
1515
depends_on:
1616
- db

0 commit comments

Comments
 (0)