update dependencies (sane go.mod) (#1061)

This commit is contained in:
nils måsén 2021-09-29 11:34:05 +02:00 committed by GitHub
parent 697397f289
commit 47a640b764
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 759 additions and 249 deletions

View file

@ -212,7 +212,7 @@ func (client dockerClient) StartContainer(c Container) (t.ContainerID, error) {
name := c.Name()
log.Infof("Creating %s", name)
createdContainer, err := client.api.ContainerCreate(bg, config, hostConfig, simpleNetworkConfig, name)
createdContainer, err := client.api.ContainerCreate(bg, config, hostConfig, simpleNetworkConfig, nil, name)
if err != nil {
return "", err
}