mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-10-31 16:13:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			99 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package workers
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"os"
 | |
| 	"os/exec"
 | |
| 	"path/filepath"
 | |
| 	"sync"
 | |
| 
 | |
| 	"github.com/moby/buildkit/identity"
 | |
| 	"github.com/moby/buildkit/util/testutil/integration"
 | |
| 	"github.com/pkg/errors"
 | |
| )
 | |
| 
 | |
| func InitDockerContainerWorker() {
 | |
| 	integration.Register(&containerWorker{
 | |
| 		id: "docker-container",
 | |
| 	})
 | |
| }
 | |
| 
 | |
| type containerWorker struct {
 | |
| 	id string
 | |
| 
 | |
| 	unsupported []string
 | |
| 
 | |
| 	docker      integration.Backend
 | |
| 	dockerClose func() error
 | |
| 	dockerErr   error
 | |
| 	dockerOnce  sync.Once
 | |
| }
 | |
| 
 | |
| func (w *containerWorker) Name() string {
 | |
| 	return w.id
 | |
| }
 | |
| 
 | |
| func (w *containerWorker) Rootless() bool {
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| func (w *containerWorker) NetNSDetached() bool {
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| func (w *containerWorker) New(ctx context.Context, cfg *integration.BackendConfig) (integration.Backend, func() error, error) {
 | |
| 	w.dockerOnce.Do(func() {
 | |
| 		w.docker, w.dockerClose, w.dockerErr = dockerWorker{id: w.id}.New(ctx, cfg)
 | |
| 	})
 | |
| 	if w.dockerErr != nil {
 | |
| 		return w.docker, w.dockerClose, w.dockerErr
 | |
| 	}
 | |
| 
 | |
| 	cfgfile, err := integration.WriteConfig(cfg.DaemonConfig)
 | |
| 	if err != nil {
 | |
| 		return nil, nil, err
 | |
| 	}
 | |
| 	defer os.RemoveAll(filepath.Dir(cfgfile))
 | |
| 	name := "integration-container-" + identity.NewID()
 | |
| 	cmd := exec.Command("buildx", "create",
 | |
| 		"--bootstrap",
 | |
| 		"--name="+name,
 | |
| 		"--buildkitd-config="+cfgfile,
 | |
| 		"--driver=docker-container",
 | |
| 		"--driver-opt=network=host",
 | |
| 	)
 | |
| 	cmd.Env = append(
 | |
| 		os.Environ(),
 | |
| 		"BUILDX_CONFIG=/tmp/buildx-"+name,
 | |
| 		"DOCKER_CONTEXT="+w.docker.DockerAddress(),
 | |
| 	)
 | |
| 	if err := cmd.Run(); err != nil {
 | |
| 		return nil, nil, errors.Wrapf(err, "failed to create buildx instance %s", name)
 | |
| 	}
 | |
| 
 | |
| 	cl := func() error {
 | |
| 		cmd := exec.Command("buildx", "rm", "-f", name)
 | |
| 		return cmd.Run()
 | |
| 	}
 | |
| 
 | |
| 	return &backend{
 | |
| 		context:             w.docker.DockerAddress(),
 | |
| 		builder:             name,
 | |
| 		unsupportedFeatures: w.unsupported,
 | |
| 	}, cl, nil
 | |
| }
 | |
| 
 | |
| func (w *containerWorker) Close() error {
 | |
| 	if c := w.dockerClose; c != nil {
 | |
| 		return c()
 | |
| 	}
 | |
| 
 | |
| 	// reset the worker to be ready to go again
 | |
| 	w.docker = nil
 | |
| 	w.dockerClose = nil
 | |
| 	w.dockerErr = nil
 | |
| 	w.dockerOnce = sync.Once{}
 | |
| 
 | |
| 	return nil
 | |
| }
 | 
