Upgrade docker sdk to moby (#491)

* Replace deprecated method

* Upgrade docker sdk to moby
This commit is contained in:
Stavros Panakakis
2021-09-07 14:03:13 +03:00
committed by GitHub
parent 94ec06a3fe
commit 3ee2975d76
17 changed files with 39 additions and 38 deletions

View File

@@ -12,10 +12,10 @@ import (
"golang.org/x/crypto/ssh"
client "docker.io/go-docker"
"docker.io/go-docker/api/types"
"docker.io/go-docker/api/types/filters"
"docker.io/go-docker/api/types/network"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/filters"
"github.com/docker/docker/api/types/network"
"github.com/docker/docker/client"
"github.com/gorilla/mux"
"github.com/play-with-docker/play-with-docker/config"
"github.com/play-with-docker/play-with-docker/router"
@@ -60,7 +60,7 @@ func director(protocol router.Protocol, host string) (*router.DirectorInfo, erro
func connectNetworks() error {
ctx := context.Background()
c, err := client.NewEnvClient()
c, err := client.NewClientWithOpts()
if err != nil {
log.Fatal(err)
}
@@ -91,7 +91,7 @@ func connectNetworks() error {
}
func monitorNetworks() {
c, err := client.NewEnvClient()
c, err := client.NewClientWithOpts()
if err != nil {
log.Fatal(err)
}