fix the packer cache script (#41183)

* 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.
This commit is contained in:
Alpar Torok 2019-04-17 08:58:11 +03:00
parent 0d1178fca6
commit 84e2f9d8ec
1 changed files with 5 additions and 0 deletions

View File

@ -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