cmd.StringVar(&config.Pidfile,[]string{"p","-pidfile"},defaultPidFile,usageFn("Path to use for daemon PID file"))
cmd.StringVar(&config.Root,[]string{"g","-graph"},defaultGraph,usageFn("Root of the Docker runtime"))
cmd.StringVar(&config.ExecRoot,[]string{"-exec-root"},"/var/run/docker",usageFn("Root of the Docker execdriver"))
cmd.BoolVar(&config.AutoRestart,[]string{"#r","#-restart"},true,usageFn("--restart on the daemon has been deprecated in favor of --restart policies on docker run"))
cmd.StringVar(&config.GraphDriver,[]string{"s","-storage-driver"},"",usageFn("Storage driver to use"))
cmd.StringVar(&config.ExecDriver,[]string{"e","-exec-driver"},defaultExec,usageFn("Exec driver to use"))
cmd.IntVar(&config.Mtu,[]string{"#mtu","-mtu"},0,usageFn("Set the containers network MTU"))
cmd.BoolVar(&config.EnableCors,[]string{"#api-enable-cors","#-api-enable-cors"},false,usageFn("Enable CORS headers in the remote API, this is deprecated by --api-cors-header"))
cmd.StringVar(&config.CorsHeaders,[]string{"-api-cors-header"},"",usageFn("Set CORS headers in the remote API"))