I wanted to update to latest PHP 7.1(.21) base image but it was impossible.
This version is available with release 0.35 of https://github.com/devilbox/docker-php-fpm
But not with release 0.32
./update.sh
Be able to get always the latest PHP version
PHP 7.1.20 version installed
I've searched before to find where it came from.
https://github.com/cytopia/devilbox/blob/master/docker-compose.yml#L98
Tell us
php:
image: devilbox/php-fpm:${PHP_SERVER:-7.0}-work-0.32
I've replaced work-0.32 by work-0.35 and all is good
@llaville I was already a bit ahead with creating new PHP versions and removed the old once from nightly auto-building without adding the new one to the Devilbox. PR is coming today.
@llaville merged and available
@cytopia I won't reopen this issue, but I'll keep you aware that you should think on a solution to provide Docker PHP-FPM images with latest PHP versions.
Actually either devilbox/php-fpm:7.2-work or devilbox/php-fpm:7.2-work-0-42 contains only PHP 7.2.10 version.
I've not checked other images, but I'm pretty sure there are not up-to-date too !
PHP 7.2.11 was released on Oct 11, 2018. PHP 7.1.23 was released also the same day
@llaville thanks for the heads-up. Might have an issue with the CI pipeline at the moment. I will re-open this issue until it is running stable and make sure to deliver the latest feature version on each major.
@cytopia Hello; I've just tested release v0.44 (with changing line https://github.com/cytopia/devilbox/blob/master/docker-compose.yml#L98), and it works :
like a charm for PHP 5.6.38
but i'm surprised with PHP 7.3, when I enter php container I see [email protected] in /shared/httpd $
Confirmed with command php -v
PHP 7.3.0-dev (cli) (built: Jul 27 2018 20:16:57) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.0-dev, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.3.0-dev, Copyright (c) 1999-2018, by Zend Technologies
Latest version is 7.3.0RC4 (25-Oct)
Latest version is 7.3.0RC4 (25-Oct)
Yes, this is due to the fact that I am building PHP 7.3 out of the github source myself, as it wasnt available by the time I've added it to the Devilbox. I will switch this to the official RC the coming days and add the current state of PHP 7.4 to the stack
The whole build pipeline still seems to break no and then and I am still investigating to harden it further.
@cytopia I've just test release v0.46 with PHP 7.3, and noticed a little change in php container prompt since previous unofficial version (see my comment)
See [email protected] in /shared/httpd $
And command php -v give
PHP 7.3.0RC4 (cli) (built: Oct 26 2018 20:43:47) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.0-dev, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.3.0RC4, Copyright (c) 1999-2018, by Zend Technologies
Is it not suppose to see prompt with [email protected] ?
Is it not suppose to see prompt with [email protected] ?
Looks like I forgot to also parse upper case. PR on the way: https://github.com/devilbox/docker-php-fpm/pull/61