-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this allows to connect to remote docker deamons via ssh Signed-off-by: Matej Vasek <[email protected]>
- Loading branch information
1 parent
bb2f306
commit 41c083e
Showing
3 changed files
with
337 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ require ( | |
github.com/buildpacks/pack v0.19.0 | ||
github.com/cloudevents/sdk-go/v2 v2.4.1 | ||
github.com/containers/image/v5 v5.10.6 | ||
github.com/docker/docker v20.10.7+incompatible | ||
github.com/docker/docker v20.10.8+incompatible | ||
github.com/docker/docker-credential-helpers v0.6.4 | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/go-git/go-billy/v5 v5.3.1 | ||
|
@@ -18,20 +18,26 @@ require ( | |
github.com/google/uuid v1.2.0 | ||
github.com/hinshun/vt10x v0.0.0-20180809195222-d55458df857c | ||
github.com/markbates/pkger v0.17.1 | ||
github.com/matejvasek/sshdialer v0.0.0-20210910025520-fddb287f1031 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/opencontainers/image-spec v1.0.2-0.20190823105129-775207bd45b6 | ||
github.com/ory/viper v1.7.5 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spf13/cobra v1.1.3 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/api v0.19.7 | ||
k8s.io/apimachinery v0.19.7 | ||
k8s.io/client-go v0.19.7 | ||
k8s.io/api v0.20.6 | ||
k8s.io/apimachinery v0.20.6 | ||
k8s.io/client-go v0.20.6 | ||
knative.dev/client v0.23.2 | ||
knative.dev/eventing v0.23.3 | ||
knative.dev/pkg v0.0.0-20210510175900-4564797bf3b7 | ||
knative.dev/serving v0.23.1 | ||
) | ||
|
||
// knative.dev/[email protected] and knative.dev/[email protected] require different versions of go-openapi/spec | ||
replace github.com/go-openapi/spec => github.com/go-openapi/spec v0.19.6 | ||
replace ( | ||
github.com/go-openapi/spec => github.com/go-openapi/spec v0.19.6 | ||
k8s.io/api => k8s.io/api v0.19.7 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.19.7 | ||
k8s.io/client-go => k8s.io/client-go v0.19.7 | ||
) |
Oops, something went wrong.