Merge tag 'nektos/v0.2.34'

This commit is contained in:
Jason Song
2022-12-05 17:08:17 +08:00
57 changed files with 1720 additions and 282 deletions

View File

@@ -86,7 +86,7 @@ type Container interface {
}
// NewContainer creates a reference to a container
func NewContainer(input *NewContainerInput) Container {
func NewContainer(input *NewContainerInput) ExecutionsEnvironment {
cr := new(containerReference)
cr.input = input
return cr
@@ -235,6 +235,7 @@ type containerReference struct {
input *NewContainerInput
UID int
GID int
LinuxContainerEnvironmentExtensions
}
func GetDockerClient(ctx context.Context) (cli client.APIClient, err error) {