(workingDir, homeDir string)
| 10 | ) |
| 11 | |
| 12 | func fullExampleConfig(workingDir, homeDir string) *types.Config { |
| 13 | return &types.Config{ |
| 14 | Version: "3.13", |
| 15 | Services: services(workingDir, homeDir), |
| 16 | Networks: networks(), |
| 17 | Volumes: volumes(), |
| 18 | Configs: configs(workingDir), |
| 19 | Secrets: secrets(workingDir), |
| 20 | Extras: map[string]any{ |
| 21 | "x-foo": "bar", |
| 22 | "x-bar": "baz", |
| 23 | "x-nested": map[string]any{ |
| 24 | "foo": "bar", |
| 25 | "bar": "baz", |
| 26 | }, |
| 27 | }, |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | func services(workingDir, homeDir string) []types.ServiceConfig { |
| 32 | return []types.ServiceConfig{ |
no test coverage detected
searching dependent graphs…