Skip to content

Commit

Permalink
fix the packer cache script (#41183)
Browse files Browse the repository at this point in the history
* fix the packer cache script

This PR disabled the explicit pull since it seems this always tries to
work with a registry.
Functionality will not be affected since we will still build the images
on pull.
  • Loading branch information
alpar-t committed Apr 17, 2019
1 parent 0d1178f commit 84e2f9d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions distribution/docker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,8 @@ for (final boolean oss : [false, true]) {

assemble.dependsOn "buildOssDockerImage"
assemble.dependsOn "buildDockerImage"

// We build the images used in compose locally, but the pull command insists on using a repository
// thus we must disable it to prevent it from doing so.
// Everything will still be pulled since we will build the local images on a pull
composePull.enabled = false

0 comments on commit 84e2f9d

Please sign in to comment.