2013-10-05 02:25:15 +00:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
|
|
|
type DaemonConfig struct {
|
2013-10-10 20:48:22 +00:00
|
|
|
Pidfile string
|
|
|
|
GraphPath string
|
|
|
|
ProtoAddresses []string
|
|
|
|
AutoRestart bool
|
|
|
|
EnableCors bool
|
|
|
|
Dns []string
|
|
|
|
EnableIptables bool
|
|
|
|
BridgeIface string
|
|
|
|
DefaultIp net.IP
|
|
|
|
InterContainerCommunication bool
|
2013-10-05 02:25:15 +00:00
|
|
|
}
|