Current docker refuses to load the plugin due to API version
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2024-05-06 14:11:39 +02:00
parent 0e66673926
commit 8206541f81

View File

@@ -23,7 +23,7 @@ type Plugin struct {
// NewPlugin creates a new Plugin
func NewPlugin(awaitTimeout time.Duration) (*Plugin, error) {
client, err := docker.NewClient("unix:///run/docker.sock", "v1.13.1", nil, nil)
client, err := docker.NewClient("unix:///run/docker.sock", "v1.41", nil, nil)
if err != nil {
return nil, fmt.Errorf("failed to create docker client: %w", err)
}