我正在 GO 中编写一个简单的应用程序,并且我有这个文件夹结构
docker-compose.yml 文件内容为:
version: '2'
services:
db:
image: rethinkdb:latest
ports:
- "38080:8080"
- "38015:28015"
- "39015:29015"
api:
image: golang:1.8-alpine
volumes:
- .:/go/src/test_server/
working_dir: /go/src/test_server
command: go run server.go
container_name: test_server
ports:
- "8085:8085"
links:
- db
tty: true
每次我运行 docker-compose up 我都会收到以下错误消息:
测试服务器 | controllers/users.go:4:3: 在以下任何一个中找不到包“_/go/src/test_server/vendor/github.com/gin-gonic/gin”:test_server |
/usr/local/go/src/_/go/src/test_server/vendor/github.com/gin-gonic/gin (来自 $GOROOT) test_server |
/go/src/_/go/src/test_server/vendor/github.com/gin-gonic/gin(来自 $GOPATH)
它指的是控制器包。我正在使用 github.com/kardianos/govendor 来销售我的包。你知道发生了什么事吗?