Skip to content

Commit

Permalink
Merge pull request #1407 from mrrobot47/add/php-7.3
Browse files Browse the repository at this point in the history
Add support for PHP 7.3
  • Loading branch information
mrrobot47 authored Mar 28, 2019
2 parents f55eb6c + ef2b2d3 commit 1feb563
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions img-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"easyengine/nginx": "v4.0.0",
"easyengine/php": "v4.0.2",
"easyengine/php5.6": "v4.0.0",
"easyengine/php7.3": "v4.0.0",
"easyengine/postfix": "v4.0.0",
"easyengine/redis": "v4.0.0",
"easyengine/newrelic-daemon": "v4.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,13 @@ public function up() {
$images = EE\Utils\get_image_versions();

$query = '';
$skip_download = [
'easyengine/php5.6',
'easyengine/php7.3',
'easyengine/newrelic-daemon',
];
foreach ( $images as $image => $tag ) {
if ( 'easyengine/php5.6' === $image ) {
if ( in_array( $image, $skip_download ) ) {
continue;
}
EE::log( "Checking and Pulling docker image $image:$tag" );
Expand Down

0 comments on commit 1feb563

Please # to comment.