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:
parent
0d1178fca6
commit
84e2f9d8ec
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue