Pull pulls image if it doesn't exist locally
(image string)
| 408 | |
| 409 | // Pull pulls image if it doesn't exist locally |
| 410 | func Pull(image string) error { |
| 411 | return PullImages([]string{image}, false) |
| 412 | } |
| 413 | |
| 414 | // sanitizeServiceName sanitizes a string to be a valid Docker Compose service name |
| 415 | // by replacing any characters that don't match [a-zA-Z0-9._-] with hyphens |