docs/libmachine/swarm/swarm.go

23 lines
443 B
Go

package swarm
const (
DiscoveryServiceEndpoint = "https://discovery-stage.hub.docker.com/v1"
)
type SwarmOptions struct {
IsSwarm bool
Address string
Discovery string
Master bool
Host string
Image string
Strategy string
Heartbeat int
Overcommit float64
TlsCaCert string
TlsCert string
TlsKey string
TlsVerify bool
ArbitraryFlags []string
}