| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 | package mobyimport (	"context"	"io"	"github.com/docker/docker/api/types"	"github.com/docker/docker/api/types/container"	"github.com/docker/docker/client"	"github.com/docker/api/backend"	"github.com/docker/api/compose"	"github.com/docker/api/containers")type mobyService struct {	apiClient *client.Client}func init() {	backend.Register("moby", "moby", func(ctx context.Context) (backend.Service, error) {		return New()	})}// New returns a moby backend implementationfunc New() (backend.Service, error) {	apiClient, err := client.NewClientWithOpts(client.FromEnv)	if err != nil {		return nil, err	}	return &mobyService{		apiClient,	}, nil}func (ms *mobyService) ContainerService() containers.Service {	return ms}func (ms *mobyService) ComposeService() compose.Service {	return nil}func (ms *mobyService) List(ctx context.Context) ([]containers.Container, error) {	css, err := ms.apiClient.ContainerList(ctx, types.ContainerListOptions{		All: false,	})	if err != nil {		return []containers.Container{}, err	}	var result []containers.Container	for _, container := range css {		result = append(result, containers.Container{			ID:      container.ID,			Image:   container.Image,			Status:  container.Status,			Command: container.Command,		})	}	return result, nil}func (ms *mobyService) Run(ctx context.Context, r containers.ContainerConfig) error {	create, err := ms.apiClient.ContainerCreate(ctx, &container.Config{		Image: r.Image,	}, nil, nil, r.ID)	if err != nil {		return err	}	return ms.apiClient.ContainerStart(ctx, create.ID, types.ContainerStartOptions{})}func (ms *mobyService) Exec(ctx context.Context, name string, command string, reader io.Reader, writer io.Writer) error {	cec, err := ms.apiClient.ContainerExecCreate(ctx, name, types.ExecConfig{		Cmd:          []string{command},		Tty:          true,		AttachStderr: true,		AttachStdin:  true,		AttachStdout: true,	})	if err != nil {		return err	}	resp, err := ms.apiClient.ContainerExecAttach(ctx, cec.ID, types.ExecStartCheck{})	if err != nil {		return err	}	defer resp.Close()	readChannel := make(chan error, 10)	writeChannel := make(chan error, 10)	go func() {		_, err := io.Copy(writer, resp.Reader)		readChannel <- err	}()	go func() {		_, err := io.Copy(resp.Conn, reader)		writeChannel <- err	}()	for {		select {		case err := <-readChannel:			return err		case err := <-writeChannel:			return err		}	}}func (ms *mobyService) Logs(ctx context.Context, containerName string, request containers.LogsRequest) error {	r, err := ms.apiClient.ContainerLogs(ctx, containerName, types.ContainerLogsOptions{		ShowStdout: true,		ShowStderr: true,	})	if err != nil {		return err	}	_, err = io.Copy(request.Writer, r)	return err}
 |