shaded-enmity / docker-tar-push

Tool that takes a Tar archive as produced by 'docker save' and uploads it to a V2 registry
MIT License
5 stars 2 forks source link

Outdated dependencies #1

Open gilligan opened 7 years ago

gilligan commented 7 years ago
$ go get github.com/shaded-enmity/docker-tar-push                                1 ↵
package github.com/docker/distribution/digest: cannot find package "github.com/docker/distribution/digest" in any of:
        /nix/store/ga6h6mfqb62g33h6m987ca2abq1f9krv-go-1.7.4/share/go/src/github.com/docker/distribution/digest (from $GOROOT)
        /home/gilligan/Development/fuckyougo/src/github.com/docker/distribution/digest (from $GOPATH)
package github.com/docker/docker/pkg/mflag: cannot find package "github.com/docker/docker/pkg/mflag" in any of:
        /nix/store/ga6h6mfqb62g33h6m987ca2abq1f9krv-go-1.7.4/share/go/src/github.com/docker/docker/pkg/mflag (from $GOROOT)
        /home/gilligan/Development/fuckyougo/src/github.com/docker/docker/pkg/mflag (from $GOPATH)

Sadly the dependencies do not exist anymore. I was really looking forward to trying your tool. Is there any chance that you could adjust this to the changes in docker?

shaded-enmity commented 7 years ago

Unfortunately replacing these deps doesn't really help since there was much more code shifted in the meantime and it's a complete mess, I'd suggest taking a look at:

https://github.com/projectatomic/skopeo

Which supports both signing & repository uploads.

HTH!

Pavel