Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
      View Source
      
  
var (
	ErrNotExists = errors.New("config does not exist")
)
    Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
	AppName     string
	Service     string            `koanf:"service"`
	Image       string            `koanf:"image"`
	Transaction Transaction       `koanf:"transaction"`
	Servers     []string          `koanf:"servers"`
	Host        string            `koanf:"host"`
	SSH         SSH               `koanf:"ssh"`
	Registry    Registry          `koanf:"registry"`
	Proxy       Proxy             `koanf:"proxy"`
	Build       Build             `koanf:"build"`
	Debug       bool              `koanf:"debug"`
	Env         map[string]string `koanf:"env"`
	Volumes     []string          `koanf:"volumes"`
}
    type Transaction ¶
type Transaction struct {
	Bypass bool `koanf:"bypass"`
}
     Click to show internal directories. 
   Click to hide internal directories.