Fix NewDockerNetworkCreateExecutor in docker_stub

This commit is contained in:
Tobias Bölz 2024-04-03 13:55:42 +02:00
parent 2ca53dd660
commit 6657ce2520

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
}