18 lines
420 B
Go
18 lines
420 B
Go
package docker
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type DaemonConfig struct {
|
|
Pidfile string
|
|
GraphPath string
|
|
ProtoAddresses []string
|
|
AutoRestart bool
|
|
EnableCors bool
|
|
Dns []string
|
|
EnableIptables bool
|
|
BridgeIface string
|
|
DefaultIp net.IP
|
|
InterContainerCommunication bool
|
|
}
|