2017-01-23 06:23:07 -05:00
package main
import (
"github.com/docker/docker/daemon/config"
"github.com/docker/docker/opts"
2017-08-29 15:55:09 -04:00
"github.com/docker/docker/registry"
2017-01-23 06:23:07 -05:00
"github.com/spf13/pflag"
)
2022-04-02 12:40:09 -04:00
// defaultTrustKeyFile is the default filename for the trust key
const defaultTrustKeyFile = "key.json"
2017-01-23 06:23:07 -05:00
// installCommonConfigFlags adds flags to the pflag.FlagSet to configure the daemon
2018-10-15 03:52:53 -04:00
func installCommonConfigFlags ( conf * config . Config , flags * pflag . FlagSet ) error {
2019-06-25 09:26:36 -04:00
var maxConcurrentDownloads , maxConcurrentUploads , maxDownloadAttempts int
2022-04-23 08:05:16 -04:00
var err error
conf . Pidfile , err = getDefaultPidFile ( )
2018-10-15 03:52:53 -04:00
if err != nil {
return err
}
2022-04-23 08:05:16 -04:00
conf . Root , err = getDefaultDataRoot ( )
2018-10-15 03:52:53 -04:00
if err != nil {
return err
}
2022-04-23 08:05:16 -04:00
conf . ExecRoot , err = getDefaultExecRoot ( )
2018-10-15 03:52:53 -04:00
if err != nil {
return err
}
2017-01-23 06:23:07 -05:00
2022-04-23 08:17:51 -04:00
var (
allowNonDistributable = opts . NewNamedListOptsRef ( "allow-nondistributable-artifacts" , & conf . AllowNondistributableArtifacts , registry . ValidateIndexName )
registryMirrors = opts . NewNamedListOptsRef ( "registry-mirrors" , & conf . Mirrors , registry . ValidateMirror )
insecureRegistries = opts . NewNamedListOptsRef ( "insecure-registries" , & conf . InsecureRegistries , registry . ValidateIndexName )
)
flags . Var ( allowNonDistributable , "allow-nondistributable-artifacts" , "Allow push of nondistributable artifacts to registry" )
flags . Var ( registryMirrors , "registry-mirror" , "Preferred Docker registry mirror" )
flags . Var ( insecureRegistries , "insecure-registry" , "Enable insecure registry communication" )
2017-01-23 06:23:07 -05:00
flags . Var ( opts . NewNamedListOptsRef ( "storage-opts" , & conf . GraphOptions , nil ) , "storage-opt" , "Storage driver options" )
flags . Var ( opts . NewNamedListOptsRef ( "authorization-plugins" , & conf . AuthorizationPlugins , nil ) , "authorization-plugin" , "Authorization plugins to load" )
flags . Var ( opts . NewNamedListOptsRef ( "exec-opts" , & conf . ExecOptions , nil ) , "exec-opt" , "Runtime execution options" )
2022-04-23 08:05:16 -04:00
flags . StringVarP ( & conf . Pidfile , "pidfile" , "p" , conf . Pidfile , "Path to use for daemon PID file" )
flags . StringVar ( & conf . Root , "data-root" , conf . Root , "Root directory of persistent Docker state" )
flags . StringVar ( & conf . ExecRoot , "exec-root" , conf . ExecRoot , "Root directory for execution state files" )
2017-09-22 09:52:41 -04:00
flags . StringVar ( & conf . ContainerdAddr , "containerd" , "" , "containerd grpc address" )
2018-06-19 18:53:40 -04:00
flags . BoolVar ( & conf . CriContainerd , "cri-containerd" , false , "start containerd with cri" )
2017-03-28 10:19:35 -04:00
2017-01-23 06:23:07 -05:00
flags . IntVar ( & conf . Mtu , "mtu" , 0 , "Set the containers network MTU" )
2022-04-23 05:43:31 -04:00
flags . IntVar ( & conf . NetworkControlPlaneMTU , "network-control-plane-mtu" , config . DefaultNetworkMtu , "Network Control plane MTU" )
flags . IntVar ( & conf . NetworkDiagnosticPort , "network-diagnostic-port" , 0 , "TCP port number of the network diagnostic server" )
_ = flags . MarkHidden ( "network-diagnostic-port" )
2017-01-23 06:23:07 -05:00
flags . BoolVar ( & conf . RawLogs , "raw-logs" , false , "Full timestamps without ANSI coloring" )
flags . Var ( opts . NewListOptsRef ( & conf . DNS , opts . ValidateIPAddress ) , "dns" , "DNS server to use" )
flags . Var ( opts . NewNamedListOptsRef ( "dns-opts" , & conf . DNSOptions , nil ) , "dns-opt" , "DNS options to use" )
flags . Var ( opts . NewListOptsRef ( & conf . DNSSearch , opts . ValidateDNSSearch ) , "dns-search" , "DNS search domains to use" )
2022-04-23 17:22:36 -04:00
flags . IPVar ( & conf . HostGatewayIP , "host-gateway-ip" , nil , "IP address that the special 'host-gateway' string in --add-host resolves to. Defaults to the IP address of the default bridge" )
2017-01-23 06:23:07 -05:00
flags . Var ( opts . NewNamedListOptsRef ( "labels" , & conf . Labels , opts . ValidateLabel ) , "label" , "Set key=value labels to the daemon" )
flags . StringVar ( & conf . LogConfig . Type , "log-driver" , "json-file" , "Default driver for container logs" )
flags . Var ( opts . NewNamedMapOpts ( "log-opts" , conf . LogConfig . Config , nil ) , "log-opt" , "Default log driver options for containers" )
2020-02-12 12:29:30 -05:00
2017-01-23 06:23:07 -05:00
flags . StringVar ( & conf . CorsHeaders , "api-cors-header" , "" , "Set CORS headers in the Engine API" )
flags . IntVar ( & maxConcurrentDownloads , "max-concurrent-downloads" , config . DefaultMaxConcurrentDownloads , "Set the max concurrent downloads for each pull" )
flags . IntVar ( & maxConcurrentUploads , "max-concurrent-uploads" , config . DefaultMaxConcurrentUploads , "Set the max concurrent uploads for each push" )
2019-06-25 09:26:36 -04:00
flags . IntVar ( & maxDownloadAttempts , "max-download-attempts" , config . DefaultDownloadAttempts , "Set the max download attempts for each pull" )
2022-04-02 12:40:09 -04:00
flags . IntVar ( & conf . ShutdownTimeout , "shutdown-timeout" , config . DefaultShutdownTimeout , "Set the default shutdown timeout" )
2017-01-23 06:23:07 -05:00
flags . StringVar ( & conf . SwarmDefaultAdvertiseAddr , "swarm-default-advertise-addr" , "" , "Set default address or interface for swarm advertised address" )
flags . BoolVar ( & conf . Experimental , "experimental" , false , "Enable experimental features" )
flags . StringVar ( & conf . MetricsAddress , "metrics-addr" , "" , "Set default address and port to serve the metrics api on" )
2018-01-26 16:15:36 -05:00
flags . Var ( opts . NewNamedListOptsRef ( "node-generic-resources" , & conf . NodeGenericResources , opts . ValidateSingleGenericResource ) , "node-generic-resource" , "Advertise user-defined resource" )
2017-10-29 15:30:31 -04:00
2017-01-23 06:23:07 -05:00
conf . MaxConcurrentDownloads = & maxConcurrentDownloads
conf . MaxConcurrentUploads = & maxConcurrentUploads
2019-06-25 09:26:36 -04:00
conf . MaxDownloadAttempts = & maxDownloadAttempts
2019-07-11 19:42:16 -04:00
2022-04-02 11:43:50 -04:00
flags . StringVar ( & conf . ContainerdNamespace , "containerd-namespace" , config . DefaultContainersNamespace , "Containerd namespace to use" )
flags . StringVar ( & conf . ContainerdPluginNamespace , "containerd-plugins-namespace" , config . DefaultPluginNamespace , "Containerd namespace to use for plugins" )
2021-02-26 18:23:55 -05:00
flags . StringVar ( & conf . DefaultRuntime , "default-runtime" , config . StockRuntimeName , "Default OCI runtime for containers" )
2021-07-16 03:33:00 -04:00
flags . StringVar ( & conf . HTTPProxy , "http-proxy" , "" , "HTTP proxy URL to use for outgoing traffic" )
flags . StringVar ( & conf . HTTPSProxy , "https-proxy" , "" , "HTTPS proxy URL to use for outgoing traffic" )
flags . StringVar ( & conf . NoProxy , "no-proxy" , "" , "Comma-separated list of hosts or IP addresses for which the proxy is skipped" )
2022-04-23 05:43:31 -04:00
// Deprecated flags / options
// "--graph" is "soft-deprecated" in favor of "data-root". This flag was added
// before Docker 1.0, so won't be removed, only hidden, to discourage its usage.
2022-04-23 08:05:16 -04:00
flags . StringVarP ( & conf . Root , "graph" , "g" , conf . Root , "Root of the Docker runtime" )
2022-04-23 05:43:31 -04:00
_ = flags . MarkHidden ( "graph" )
flags . BoolVarP ( & conf . AutoRestart , "restart" , "r" , true , "--restart on the daemon has been deprecated in favor of --restart policies on docker run" )
_ = flags . MarkDeprecated ( "restart" , "Please use a restart policy on docker run" )
flags . StringVar ( & conf . ClusterAdvertise , "cluster-advertise" , "" , "Address or interface name to advertise" )
_ = flags . MarkDeprecated ( "cluster-advertise" , "Swarm classic is deprecated. Please use Swarm-mode (docker swarm init)" )
flags . StringVar ( & conf . ClusterStore , "cluster-store" , "" , "URL of the distributed storage backend" )
_ = flags . MarkDeprecated ( "cluster-store" , "Swarm classic is deprecated. Please use Swarm-mode (docker swarm init)" )
flags . Var ( opts . NewNamedMapOpts ( "cluster-store-opts" , conf . ClusterOpts , nil ) , "cluster-store-opt" , "Set cluster store options" )
_ = flags . MarkDeprecated ( "cluster-store-opt" , "Swarm classic is deprecated. Please use Swarm-mode (docker swarm init)" )
2020-11-05 15:14:01 -05:00
return nil
2017-01-23 06:23:07 -05:00
}