Fix NewDockerNetworkCreateExecutor in docker_stub

This commit is contained in:
Tobias Bölz 2024-04-03 13:55:42 +02:00
parent ebd01185d1
commit 09c86f6ffa

View file

@ -56,7 +56,7 @@ func NewDockerVolumeRemoveExecutor(volume string, force bool) common.Executor {
}
}
func NewDockerNetworkCreateExecutor(name string) common.Executor {
func NewDockerNetworkCreateExecutor(name string, config *types.NetworkCreate) common.Executor {
return func(ctx context.Context) error {
return nil
}