This commit updates the configuration to be yaml-based and updates the configuration to read in a yaml file.
6 lines
153 B
Go
6 lines
153 B
Go
package config
|
|
|
|
type DockerConfig struct {
|
|
// name of docker network to use
|
|
Network string `yaml:"network" default:"distillery" validate:"nonempty"`
|
|
}
|