Merge tag 'v1.6.0' into develop
[1.6.0] - 2017-06-23 Added - Added email set up support though environment variables - Added cronjob to send queued emails - Automated builds on the docker hub - Updated README documentation Fixed - Image build fails when using alpine:latest. Switched to alpine:3.5 - Deletion of passwords on docker image - Avoid importing already imported secret keys on the gpg keyring
This commit is contained in:
commit
fcc7177e5c
|
|
@ -0,0 +1,17 @@
|
||||||
|
# Change Log
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.6.0] - 2017-06-23
|
||||||
|
### Added
|
||||||
|
- Added email set up support though environment variables
|
||||||
|
- Added cronjob to send queued emails
|
||||||
|
- Automated builds on the docker hub
|
||||||
|
- Updated README documentation
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Image build fails when using alpine:latest. Switched to alpine:3.5
|
||||||
|
- Deletion of passwords on docker image
|
||||||
|
- Avoid importing already imported secret keys on the gpg keyring
|
||||||
|
|
@ -2,7 +2,7 @@ FROM alpine:3.5
|
||||||
|
|
||||||
MAINTAINER diego@passbolt.com
|
MAINTAINER diego@passbolt.com
|
||||||
|
|
||||||
ENV PASSBOLT_VERSION 1.5.1
|
ENV PASSBOLT_VERSION 1.6.0
|
||||||
ENV PASSBOLT_URL https://github.com/passbolt/passbolt_api/archive/v${PASSBOLT_VERSION}.tar.gz
|
ENV PASSBOLT_URL https://github.com/passbolt/passbolt_api/archive/v${PASSBOLT_VERSION}.tar.gz
|
||||||
|
|
||||||
ARG BASE_PHP_DEPS="php5-curl \
|
ARG BASE_PHP_DEPS="php5-curl \
|
||||||
|
|
|
||||||
|
|
@ -106,6 +106,7 @@ It it possible to mount the desired configuration files as volumes.
|
||||||
* /var/www/passbolt/app/Config/email.php
|
* /var/www/passbolt/app/Config/email.php
|
||||||
* /var/www/passbolt/app/Config/gpg/serverkey.asc
|
* /var/www/passbolt/app/Config/gpg/serverkey.asc
|
||||||
* /var/www/passbolt/app/Config/gpg/serverkey.private.asc
|
* /var/www/passbolt/app/Config/gpg/serverkey.private.asc
|
||||||
|
* /var/www/passbolt/app/webroot/img/public/images
|
||||||
|
|
||||||
### SSL certificate files
|
### SSL certificate files
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue