All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Added PHP 8.0 images
1.3.0 - 2021-02-14
- Upgraded composer executable to v2.x
- Removed
hirak/prestissimo
composer plugin
1.2.6 - 2020-10-24
- Added the Symfony CLI to
/usr/local/bin/symfony
in all images
1.2.5 - 2020-10-24
- Added
COMPOSER_VERSION
argument in allDockerfile
to specify which composer version to install (default tolatest
in Dockerfile,1
inMakefile
) - Added
XDEBUG_VERSION
argument in allDockerfile
to specify which version ofxdebug
to install
- Changed the way composer is installed in images by using
COPY --from=composer:${COMPOSER_VERSION} /usr/bin/composer /usr/bin/composer
- Changed path of composer executable from
/usr/local/bin/composer
to/usr/bin/composer
- Fixed unused
PRESTISSIMO_VERSION
argument during build - Removed
docker-php-ext-install
instruction for already installed extensions (likepdo
,iconv
,mbstring
)
1.2.4 - 2020-09-14
- Fixed
ImagickException: attempt to perform an operation not allowed by the security policy 'PDF' @ error/constitute.c/IsCoderAuthorized/408
error when trying to read a PDF with Imagick extension.
1.2.3 - 2020-06-28
- Added
CHANGELOG.md
1.2.2 - 2020-05-24
redis
PECL extensions for all images- Update
README.md
to includeSymfony 5
version
- Typo in
Makefile
1.2.1 - 2020-03-08
- Support for
webp
images with GD extension in all versions
- Upgraded hirak/prestissimo to
0.3.10
- Missing
.PHONY:
directives inMakefile
1.2.0 - 2019-12-28
- PHP 7.4 images
1.1.2 - 2019-11-10
- Custom
php.ini
file for each PHP image
- Fixed memory limitations by setting the
memory_limit
inphp.ini
to-1
1.1.1 - 2019-10-22
soap
andGD
extensions to all PHP images
1.1.0 - 2019-10-22
- Added a
Makefile
to simplify the building of images - Added hirak/prestissimo to speed up packages installation.
- BREAKING CHANGES :
⚠️ Default user is nowsymfony
instead ofroot
when running container⚠️
If you used apt-get ...
or something that require root
privileges before this version, make sure to update your Dockerfile or CI script !
1.0.0 - 2019-04-19
- Added images for PHP
7.3
- Replaced
MAINTAINER
directive by aLABEL
directive - Added a default workdir (
/app
) - Added a default volume (
/app
) - Added a CMD directive on all images (default to
/app/bin/console
)