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
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: