Files
buildkit/client/connhelper/nerdctlcontainer/nerdctlcontainer.go
2023-01-07 17:47:29 +08:00

58 lines
1.5 KiB
Go

// Package nerdctlcontainer provides connhelper for nerdctl-container://<container>
package nerdctlcontainer
import (
"context"
"net"
"net/url"
"github.com/docker/cli/cli/connhelper/commandconn"
"github.com/moby/buildkit/client/connhelper"
"github.com/pkg/errors"
)
func init() {
connhelper.Register("nerdctl-container", Helper)
}
// Helper returns helper for connecting to a Nerdctl container.
// Requires BuildKit v0.5.0 or later in the container.
func Helper(u *url.URL) (*connhelper.ConnectionHelper, error) {
sp, err := SpecFromURL(u)
if err != nil {
return nil, err
}
return &connhelper.ConnectionHelper{
ContextDialer: func(ctx context.Context, addr string) (net.Conn, error) {
// using background context because context remains active for the duration of the process, after dial has completed
args := []string{"exec"}
if sp.Namespace != "" {
args = append(args, "--namespace", sp.Namespace)
}
args = append(args, "-i", sp.Container, "buildctl", "dial-stdio")
return commandconn.New(context.Background(), "nerdctl", args...)
},
}, nil
}
// Spec
type Spec struct {
Container string
Namespace string
}
// SpecFromURL creates Spec from URL.
// URL is like nerdctl-container://<container>?namespace=<namespace>
// Only <container> part is mandatory.
func SpecFromURL(u *url.URL) (*Spec, error) {
q := u.Query()
sp := Spec{
Container: u.Hostname(),
Namespace: q.Get("namespace"),
}
if sp.Container == "" {
return nil, errors.New("url lacks container name")
}
return &sp, nil
}