forked from coop-cloud/abra
Roxie Gibson
5e1b076bf9
Taken from this gist by github.com/agbaraka https://gist.github.com/agbaraka/654a218f8ea13b3da8a47d47595f5d05 There is no in-built way of dealing with contexts using the golang sdk. This means we have to make our own Dial helper borrowing from Docker CLI This means all Docker API calls are made within the ssh connection This uses `docker system dial-stdio`
14 lines
380 B
Modula-2
14 lines
380 B
Modula-2
module coopcloud.tech/abra
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/containerd/containerd v1.5.3 // indirect
|
|
github.com/docker/cli v20.10.7+incompatible // indirect
|
|
github.com/docker/docker v20.10.7+incompatible
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/schultz-is/passgen v1.0.1
|
|
github.com/urfave/cli/v2 v2.3.0 //ct
|
|
)
|