From 73d568c1a53d4f6a7987b6691e7be13ff13b27b9 Mon Sep 17 00:00:00 2001 From: Diego Lendoiro Date: Mon, 1 Apr 2019 17:08:25 +0200 Subject: [PATCH] update to 2.8.1 --- CHANGELOG.md | 13 ++++++++++++- Dockerfile | 2 +- docker-compose-pro.yml | 2 +- docker-compose.yml | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1145ae8..fe6cd96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,18 @@ 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.1...HEAD) +## [Unreleased](https://github.com/passbolt/passbolt_docker/compare/v2.8.1...HEAD) + +## [2.8.1](https://github.com/passbolt/passbolt_docker/compare/v2.7.1...v2.8.1) - 2019-04-01 + +### Added + +- Documentation for new env variable APP_BASE to use passbolt in a subfolder +- Added wait-for.sh to the docker image as part of [#123](https://github.com/passbolt/passbolt_docker/pull/123) + +### Fixed + +- Now passbolt checks for the mysql status outside of the docker image [#97](https://github.com/passbolt/passbolt_docker/issues/97) ## [2.7.1](https://github.com/passbolt/passbolt_docker/compare/v2.7.0...v2.7.1) - 2019-02-13 diff --git a/Dockerfile b/Dockerfile index 61d4d11..ef679f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM php:7.2-fpm LABEL maintainer="diego@passbolt.com" -ARG PASSBOLT_VERSION="2.7.1" +ARG PASSBOLT_VERSION="2.8.1" ARG PASSBOLT_URL="https://github.com/passbolt/passbolt_api/archive/v${PASSBOLT_VERSION}.tar.gz" ARG PHP_EXTENSIONS="gd \ diff --git a/docker-compose-pro.yml b/docker-compose-pro.yml index 09c8ff8..31f8759 100644 --- a/docker-compose-pro.yml +++ b/docker-compose-pro.yml @@ -10,7 +10,7 @@ services: - "127.0.0.1:3306:3306" passbolt: - image: passbolt/passbolt:2.7.1-pro-debian + image: passbolt/passbolt:2.8.1-pro-debian tty: true depends_on: - db diff --git a/docker-compose.yml b/docker-compose.yml index 0cb2e1a..27eed0e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: - "127.0.0.1:3306:3306" passbolt: - image: passbolt/passbolt:2.7.1-debian + image: passbolt/passbolt:2.8.1-debian tty: true depends_on: - db