mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #23790 from tonistiigi/skip-pull
Skip always pulling images on integration tests
This commit is contained in:
commit
487931902c
2 changed files with 17 additions and 14 deletions
|
@ -2,6 +2,7 @@ package container
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
|
|
||||||
executorpkg "github.com/docker/docker/daemon/cluster/executor"
|
executorpkg "github.com/docker/docker/daemon/cluster/executor"
|
||||||
"github.com/docker/engine-api/types"
|
"github.com/docker/engine-api/types"
|
||||||
|
@ -84,6 +85,7 @@ func (r *controller) Prepare(ctx context.Context) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if os.Getenv("DOCKER_SERVICE_PREFER_OFFLINE_IMAGE") != "1" {
|
||||||
if err := r.adapter.pullImage(ctx); err != nil {
|
if err := r.adapter.pullImage(ctx); err != nil {
|
||||||
// NOTE(stevvooe): We always try to pull the image to make sure we have
|
// NOTE(stevvooe): We always try to pull the image to make sure we have
|
||||||
// the most up to date version. This will return an error, but we only
|
// the most up to date version. This will return an error, but we only
|
||||||
|
@ -98,6 +100,7 @@ func (r *controller) Prepare(ctx context.Context) error {
|
||||||
// immutable tag or digest.
|
// immutable tag or digest.
|
||||||
log.G(ctx).WithError(err).Error("pulling image failed")
|
log.G(ctx).WithError(err).Error("pulling image failed")
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if err := r.adapter.create(ctx, r.backend); err != nil {
|
if err := r.adapter.create(ctx, r.backend); err != nil {
|
||||||
if isContainerCreateNameConflict(err) {
|
if isContainerCreateNameConflict(err) {
|
||||||
|
|
|
@ -172,7 +172,7 @@ func (d *Daemon) StartWithLogFile(out *os.File, providedArgs ...string) error {
|
||||||
|
|
||||||
args = append(args, providedArgs...)
|
args = append(args, providedArgs...)
|
||||||
d.cmd = exec.Command(dockerdBinary, args...)
|
d.cmd = exec.Command(dockerdBinary, args...)
|
||||||
|
d.cmd.Env = append(os.Environ(), "DOCKER_SERVICE_PREFER_OFFLINE_IMAGE=1")
|
||||||
d.cmd.Stdout = out
|
d.cmd.Stdout = out
|
||||||
d.cmd.Stderr = out
|
d.cmd.Stderr = out
|
||||||
d.logFile = out
|
d.logFile = out
|
||||||
|
|
Loading…
Reference in a new issue