Merge branch 'release/v3.1.0'
This commit is contained in:
commit
808a3efe8c
|
|
@ -2,7 +2,12 @@
|
|||
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/v3.0.1...HEAD)
|
||||
## [Unreleased](https://github.com/passbolt/passbolt_docker/compare/v3.1.0...HEAD)
|
||||
|
||||
## [3.1.0](https://github.com/passbolt/passbolt_docker/compare/v3.0.2...v3.1.0) - 2021-03-18
|
||||
|
||||
- This is a sync release. Check [changes](https://github.com/passbolt/passbolt_api/compare/v3.0.2...v3.1.0) for passbolt_api
|
||||
- Fix dev Dockerfile ln command syntax
|
||||
|
||||
## [3.0.2](https://github.com/passbolt/passbolt_docker/compare/v3.0.1...v3.0.2) - 2021-03-12
|
||||
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ RUN apt-get update \
|
|||
&& mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" \
|
||||
&& echo "* * * * * su -c \"source /etc/environment ; /var/www/passbolt/bin/cake EmailQueue.sender\" -s /bin/bash www-data >> /var/log/cron.log 2>&1" >> /etc/cron.d/passbolt_email \
|
||||
&& crontab /etc/cron.d/passbolt_email \
|
||||
&& ln -s $(which php-fpm){,7.3}
|
||||
&& ln -s $(which php-fpm) $(which php-fpm)7.3
|
||||
|
||||
COPY conf/passbolt.conf /etc/nginx/conf.d/default.conf
|
||||
COPY conf/supervisor/*.conf /etc/supervisor/conf.d/
|
||||
|
|
|
|||
Loading…
Reference in New Issue