DefaultImageName returns the image name following compose naming logic.
(projectName string, serviceName string)
| 1013 | |
| 1014 | // DefaultImageName returns the image name following compose naming logic. |
| 1015 | func DefaultImageName(projectName string, serviceName string) string { |
| 1016 | return projectName + Separator + serviceName |
| 1017 | } |
| 1018 | |
| 1019 | // DefaultContainerName returns the service container name following compose naming logic. |
| 1020 | func DefaultContainerName(projectName, serviceName, suffix string) string { |
no outgoing calls
searching dependent graphs…