From 06227e97d0ef695a1378296dd6586e8812608388 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 30 Jul 2021 17:39:45 +0200 Subject: [PATCH] Fixed memory too low limit on docker image --- CHANGELOG.md | 17 +++++++++++++++++ docker/config/php.ini | 1 + 2 files changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6936625..59f8b7dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org). +## [2.7.2] - 2021-07-30 +### Added +* *Nothing* + +### Changed +* *Nothing* + +### Deprecated +* *Nothing* + +### Removed +* *Nothing* + +### Fixed +* [#1128](https://github.com/shlinkio/shlink/issues/1128) Increased memory limit reserved for the docker image, preventing it from crashing on GeoLite db download. + + ## [2.7.1] - 2021-05-30 ### Added * *Nothing* diff --git a/docker/config/php.ini b/docker/config/php.ini index f6c718d0..fca44924 100644 --- a/docker/config/php.ini +++ b/docker/config/php.ini @@ -1,3 +1,4 @@ log_errors_max_len=0 zend.assertions=1 assert.exception=1 +memory_limit=256M