Documentation ¶
Index ¶
Constants ¶
View Source
const ( CONTAINER_ID = "container_id" CONTAINER_STARTING = Event("Starting container") CONTAINER_CREATED = Event("Created container") CONTAINER_STARTED = Event("Started container") SERVICE_ADD = Event("Adding") SERVICE_UP_START = Event("Starting") SERVICE_UP = Event("Started") PROJECT_UP_START = Event("Starting project") PROJECT_RELOAD = Event("Reloading project") PROJECT_RELOAD_TRIGGER = Event("Triggering project reload") )
Variables ¶
View Source
var ( EXECUTED ServiceState = ServiceState("executed") UNKNOWN ServiceState = ServiceState("unknown") ErrRestart error = errors.New("Restart execution") )
Functions ¶
This section is empty.
Types ¶
type EnvironmentLookup ¶
type EnvironmentLookup interface {
Lookup(key, serviceName string, config *ServiceConfig) []string
}
type Project ¶
type Project struct { EnvironmentLookup EnvironmentLookup Name string Services map[string]Service ReloadCallback func() error // contains filtered or unexported fields }
func NewProject ¶
func NewProject(name string, factory ServiceFactory) *Project
func (*Project) AddListener ¶
func (p *Project) AddListener(c chan<- ProjectEvent)
type Service ¶
type Service interface { Name() string Up() error Config() *ServiceConfig }
type ServiceConfig ¶
type ServiceConfig struct { CapAdd []string `yaml:"cap_add,omitempty"` CapDrop []string `yaml:"cap_drop,omitempty"` Command string `yaml:"command,omitempty"` Detach string `yaml:"detach,omitempty"` Dns []string `yaml:"dns,omitempty"` DnsSearch string `yaml:"dns_search,omitempty"` DomainName string `yaml:"domainname,omitempty"` Entrypoint string `yaml:"entrypoint,omitempty"` EnvFile string `yaml:"env_file,omitempty"` Environment []string `yaml:"environment,omitempty"` Hostname string `yaml:"hostname,omitempty"` Image string `yaml:"image,omitempty"` Labels []string `yaml:"labels,omitempty"` Links []string `yaml:"links,omitempty"` LogDriver string `yaml:"log_driver,omitempty"` MemLimit int64 `yaml:"mem_limit,omitempty"` Name string `yaml:"name,omitempty"` Net string `yaml:"net,omitempty"` Pid string `yaml:"pid,omitempty"` Ipc string `yaml:"ipc,omitempty"` Ports []string `yaml:"ports,omitempty"` Privileged bool `yaml:"privileged,omitempty"` Restart string `yaml:"restart,omitempty"` ReadOnly bool `yaml:"read_only,omitempty"` StdinOpen bool `yaml:"stdin_open,omitempty"` Tty bool `yaml:"tty,omitempty"` User string `yaml:"user,omitempty"` Volumes []string `yaml:"volumes,omitempty"` VolumesFrom []string `yaml:"volumes_from,omitempty"` WorkingDir string `yaml:"working_dir,omitempty"` //`yaml:"build,omitempty"` Expose []string `yaml:"expose,omitempty"` ExternalLinks []string `yaml:"external_links,omitempty"` }
type ServiceFactory ¶
type ServiceFactory interface {
Create(project *Project, name string, serviceConfig *ServiceConfig) (Service, error)
}
type ServiceState ¶
type ServiceState string
type ServiceWrapper ¶
type ServiceWrapper struct {
// contains filtered or unexported fields
}
func NewServiceWrapper ¶
func NewServiceWrapper(name string, p *Project) *ServiceWrapper
func (*ServiceWrapper) Reset ¶
func (s *ServiceWrapper) Reset()
func (*ServiceWrapper) Start ¶
func (s *ServiceWrapper) Start(wrappers map[string]*ServiceWrapper)
func (*ServiceWrapper) Wait ¶
func (s *ServiceWrapper) Wait() error
Click to show internal directories.
Click to hide internal directories.