Skip to content

Commit 8bff8e0

Browse files
committed
Skip pulling of 5.6 image temporarily
Signed-off-by: Riddhesh Sanghvi <[email protected]>
1 parent af4a663 commit 8bff8e0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

migrations/db/20181016052850_easyengine_insert_docker_images_version.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ public function up() {
3232

3333
$query = '';
3434
foreach ( $images as $image => $tag ) {
35+
if ( 'easyengine/php5.6' === $image ) {
36+
continue;
37+
}
3538
EE::log( "Checking and Pulling docker image $image:$tag" );
3639
if ( ! \EE::exec( "docker pull ${image}:${tag}", true, true ) ) {
3740
throw new \Exception( "Unable to pull ${image}:${tag}. Please check logs for more details." );

php/EE/Migration/Containers.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public static function start_container_migration() {
3030
foreach ( $img_versions as $img => $version ) {
3131
if ( $current_versions[ $img ] !== $version ) {
3232
$updated_images[] = $img;
33+
if ( 'easyengine/php5.6' === $img ) {
34+
continue;
35+
}
3336
self::pull_or_error( $img, $version );
3437
}
3538
}

0 commit comments

Comments
 (0)