You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 9, 2019. It is now read-only.
After some back and forth with Markus, the choice is obvious. Go mod is the way to go (no pun intended) since is build into the whole go tooling, and many more.
The reason is that it pulls an old version of docker that depends on a a path with upercase letter. After digging around it seems this will not be an issue with go 1.12
Even if you try manually pulling docker by the means of
go mod init go get github.com/docker/[email protected] go mod tidy
it still fails with the same issue. The reason being that v17.05.0-ce (which is the latest?) is relatively old (2017-05-04)
A solution to this is pulling a version i found in this golang/go#26208 which is from 2018-04-22
go mod init go get github.com/docker/[email protected] go mod tidy
So this got me thinking that versions from that date an on should also work. So i tried with pulling docker master and it worked as expected.
go mod init go get github.com/docker/docker@master go mod tidy
So the question becomes on which commit of the docker repository do we want to depend on? We can try building with current master and if everything works we can stick with that until we find a better version to update to.
Currently QMSTR uses dep for dependency management. We should either:
The text was updated successfully, but these errors were encountered: