mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-20 08:51:01 +00:00
20 lines
416 B
Go
20 lines
416 B
Go
package transform
|
|
|
|
import "github.com/drone/drone/yaml"
|
|
|
|
func ImageVolume(conf *yaml.Config, volumes []string) error {
|
|
|
|
if len(volumes) == 0 {
|
|
return nil
|
|
}
|
|
|
|
var containers []*yaml.Container
|
|
containers = append(containers, conf.Pipeline...)
|
|
containers = append(containers, conf.Services...)
|
|
|
|
for _, container := range containers {
|
|
container.Volumes = append(container.Volumes, volumes...)
|
|
}
|
|
|
|
return nil
|
|
}
|