1package swarm
2
3const (
4	DiscoveryServiceEndpoint = "https://discovery-stage.hub.docker.com/v1"
5)
6
7type Options struct {
8	IsSwarm            bool
9	Address            string
10	Discovery          string
11	Agent              bool
12	Master             bool
13	Host               string
14	Image              string
15	Strategy           string
16	Heartbeat          int
17	Overcommit         float64
18	ArbitraryFlags     []string
19	ArbitraryJoinFlags []string
20	Env                []string
21	IsExperimental     bool
22}
23