Skip to content

Commit

Permalink
Merge branch 'release/v2.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
dlen committed Feb 13, 2019
2 parents 15838ae + 8d9a1b9 commit 8e1c638
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased](https://github.com/passbolt/passbolt_docker/compare/v2.7.0...HEAD)
## [Unreleased](https://github.com/passbolt/passbolt_docker/compare/v2.7.1...HEAD)

## [2.7.1](https://github.com/passbolt/passbolt_docker/compare/v2.7.0...v2.7.1) - 2019-02-13

### Added

- Use php.ini-production for saner defaults in php

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

Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM php:7.2-fpm

LABEL maintainer="[email protected]"

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

ARG PHP_EXTENSIONS="gd \
Expand Down Expand Up @@ -71,7 +71,9 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* \
&& rm /usr/local/bin/composer \
&& echo 'php_flag[expose_php] = off' > /usr/local/etc/php-fpm.d/expose.conf \
&& sed -i 's/# server_tokens/server_tokens/' /etc/nginx/nginx.conf
&& sed -i 's/# server_tokens/server_tokens/' /etc/nginx/nginx.conf \
&& mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"


COPY conf/passbolt.conf /etc/nginx/conf.d/default.conf
COPY conf/supervisor/*.conf /etc/supervisor/conf.d/
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-pro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- "127.0.0.1:3306:3306"

passbolt:
image: passbolt/passbolt:2.7.0-pro-debian
image: passbolt/passbolt:2.7.1-pro-debian
tty: true
depends_on:
- db
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- "127.0.0.1:3306:3306"

passbolt:
image: passbolt/passbolt:2.7.0-debian
image: passbolt/passbolt:2.7.1-debian
tty: true
depends_on:
- db
Expand Down

0 comments on commit 8e1c638

Please sign in to comment.