github.com/slava-ustovytski/docker@v1.8.2-rc1/cli/common.go (about)

     1  package cli
     2  
     3  import (
     4  	flag "github.com/docker/docker/pkg/mflag"
     5  	"github.com/docker/docker/pkg/tlsconfig"
     6  )
     7  
     8  // CommonFlags represents flags that are common to both the client and the daemon.
     9  type CommonFlags struct {
    10  	FlagSet   *flag.FlagSet
    11  	PostParse func()
    12  
    13  	Debug      bool
    14  	Hosts      []string
    15  	LogLevel   string
    16  	TLS        bool
    17  	TLSVerify  bool
    18  	TLSOptions *tlsconfig.Options
    19  	TrustKey   string
    20  }