dongshu9458 2017-07-31 23:46
浏览 92
已采纳

为什么我无法为docker获取go sdk?

I am trying to run docker go SDK example file. I am quite new to Go language; I am not sure how to run below docker SDK API code. But I tried somehow; please help me with below error.

When I tried to run this go run example-ps.go

example-ps.go - content is below

package main

import (
  "io"
  "os"

  "github.com/docker/docker/client"
  "github.com/docker/docker/api/types"
  "github.com/docker/docker/api/types/container"
  "golang.org/x/net/context"
)

func main() {
  ctx := context.Background()
  cli, err := client.NewEnvClient()
  if err != nil {
    panic(err)
  }

  _, err = cli.ImagePull(ctx, "docker.io/library/alpine", types.ImagePullOptions{})
  if err != nil {
    panic(err)
  }

  resp, err := cli.ContainerCreate(ctx, &container.Config{
    Image: "alpine",
    Cmd:   []string{"echo", "hello world"},
  }, nil, nil, "")
  if err != nil {
    panic(err)
  }

  if err := cli.ContainerStart(ctx, resp.ID, types.ContainerStartOptions{}); err != nil {
    panic(err)
  }

  if _, err = cli.ContainerWait(ctx, resp.ID); err != nil {
    panic(err)
  }

  out, err := cli.ContainerLogs(ctx, resp.ID, types.ContainerLogsOptions{ShowStdout: true})
  if err != nil {
    panic(err)
  }

  io.Copy(os.Stdout, out)
}

I am getting below error. How do I import those library files?

example-ps.go:8:3: cannot find package "github.com/docker/docker/api/types" in any of:
        /usr/local/go/src/github.com/docker/docker/api/types (from $GOROOT)
        /Users/air/go/src/github.com/docker/docker/api/types (from $GOPATH)
example-ps.go:9:3: cannot find package "github.com/docker/docker/api/types/container" in any of:
        /usr/local/go/src/github.com/docker/docker/api/types/container (from $GOROOT)
        /Users/air/go/src/github.com/docker/docker/api/types/container (from $GOPATH)
example-ps.go:7:3: cannot find package "github.com/docker/docker/client" in any of:
        /usr/local/go/src/github.com/docker/docker/client (from $GOROOT)
        /Users/air/go/src/github.com/docker/docker/client (from $GOPATH)
example-ps.go:10:3: cannot find package "golang.org/x/net/context" in any of:
        /usr/local/go/src/golang.org/x/net/context (from $GOROOT)
        /Users/air/go/src/golang.org/x/net/context (from $GOPATH)
  • 写回答

1条回答 默认 最新

  • duande3134 2017-08-01 00:03
    关注

    if you have golang installed correctly just issue this in the dir where your golang code lives

    go get -v -t ./...
    

    which will install the upstream libraries ... then you can compile your code ... for details issue

    go help packages
    

    the short of it is ./... will install all packages [ and recursively its upstream packages, etc, etc.] mentioned in any go file's import in your current dir

    If you have ever spent days manually installing upstream libraries for any other language you will appreciate how much of a lifesaver this really is

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器