DefaultContainerName returns the service container name following compose naming logic.
(projectName, serviceName, suffix string)
| 1018 | |
| 1019 | // DefaultContainerName returns the service container name following compose naming logic. |
| 1020 | func DefaultContainerName(projectName, serviceName, suffix string) string { |
| 1021 | return DefaultImageName(projectName, serviceName) + Separator + suffix |
| 1022 | } |
searching dependent graphs…