LoadComposeFile is a helper method for loading a docker-compose file
(wd string, file string)
| 392 | |
| 393 | // LoadComposeFile is a helper method for loading a docker-compose file |
| 394 | func LoadComposeFile(wd string, file string) (*compose.Config, error) { |
| 395 | return LoadComposeFileWithArch(wd, file, env.GetClientArch) |
| 396 | } |
| 397 | |
| 398 | // LoadComposeFileWithArch is a helper method for loading a docker-compose file |
| 399 | func LoadComposeFileWithArch(wd string, file string, archGetter ArchGetter) (*compose.Config, error) { |
no test coverage detected