You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
445 B
Go
19 lines
445 B
Go
![]()
2 years ago
|
//go:build !linux
|
||
|
|
||
|
package remote
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/docker/buildx/controller/control"
|
||
|
"github.com/docker/cli/cli/command"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func NewRemoteBuildxController(ctx context.Context, dockerCli command.Cli, opts control.ControlOptions) (control.BuildxController, error) {
|
||
|
return nil, fmt.Errorf("remote buildx unsupported")
|
||
|
}
|
||
|
|
||
|
func AddControllerCommands(cmd *cobra.Command, dockerCli command.Cli) {}
|