mirror of
https://github.com/docker/cli.git
synced 2026-01-18 08:21:31 +03:00
19 lines
420 B
Go
19 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
|
|
}
|