diff --git a/img-versions.json b/img-versions.json index e591450b3..3d9ee513f 100644 --- a/img-versions.json +++ b/img-versions.json @@ -5,6 +5,7 @@ "easyengine/nginx-proxy": "v4.0.0", "easyengine/nginx": "v4.0.0", "easyengine/php": "v4.0.0", + "easyengine/php5.6": "v4.0.0", "easyengine/postfix": "v4.0.0", "easyengine/redis": "v4.0.0" } diff --git a/migrations/db/20181016052850_easyengine_insert_docker_images_version.php b/migrations/db/20181016052850_easyengine_insert_docker_images_version.php index 80f20c3af..5a8674327 100644 --- a/migrations/db/20181016052850_easyengine_insert_docker_images_version.php +++ b/migrations/db/20181016052850_easyengine_insert_docker_images_version.php @@ -32,6 +32,9 @@ public function up() { $query = ''; foreach ( $images as $image => $tag ) { + if ( 'easyengine/php5.6' === $image ) { + continue; + } EE::log( "Checking and Pulling docker image $image:$tag" ); if ( ! \EE::exec( "docker pull ${image}:${tag}", true, true ) ) { throw new \Exception( "Unable to pull ${image}:${tag}. Please check logs for more details." ); diff --git a/php/EE/Migration/Containers.php b/php/EE/Migration/Containers.php index 271156058..cf881acc1 100644 --- a/php/EE/Migration/Containers.php +++ b/php/EE/Migration/Containers.php @@ -28,6 +28,9 @@ public static function start_container_migration() { $updated_images = []; foreach ( $img_versions as $img => $version ) { + if ( 'easyengine/php5.6' === $img ) { + continue; + } if ( $current_versions[ $img ] !== $version ) { $updated_images[] = $img; self::pull_or_error( $img, $version );