feat: allow network, pid in container definitions
Some checks failed
/ build (push) Has been cancelled

This commit is contained in:
Marc 2024-11-09 18:08:32 -05:00
parent 0b2e222124
commit 62eb27a0a8
Signed by: marc
GPG key ID: 048E042F22B5DC79
2 changed files with 15 additions and 5 deletions

View file

@ -96,6 +96,14 @@ func CreateContainer(definition service_definition.ContainerDefinition, knownVol
"--replace",
}
if definition.Network != "" {
args = append(args, []string{"--network", definition.Network}...)
}
if definition.PIDNamespace != "" {
args = append(args, []string{"--pid", definition.PIDNamespace}...)
}
if definition.EnvFile != "" {
args = append(args, []string{"--env-file", definition.EnvFile}...)
}

View file

@ -33,11 +33,13 @@ type VolumeConfiguration struct {
}
type ContainerDefinition struct {
Name string `yaml:"name"`
Image string `yaml:"image"`
Volumes []VolumeConfiguration `yaml:"volumes"`
EnvFile string `yaml:"env-file"`
ExtraArgs []string `yaml:"extra-args"`
Name string `yaml:"name"`
Image string `yaml:"image"`
Volumes []VolumeConfiguration `yaml:"volumes"`
EnvFile string `yaml:"env-file"`
Network string `yaml:"network"`
PIDNamespace string `yaml:"pid-namespace"`
ExtraArgs []string `yaml:"extra-args"`
}
type ServiceDefinition struct {