Merge branch '3.3.x'

Closes gh-42686
This commit is contained in:
Stéphane Nicoll 2024-10-15 09:32:39 +02:00
commit f3d86b65a1
1 changed files with 6 additions and 8 deletions

View File

@ -19,17 +19,15 @@ package org.springframework.boot.docker.compose.core;
import java.util.regex.Pattern;
/**
* Regular Expressions for image names and references based on those found in the Docker
* codebase.
* Regular Expressions for image names and references based on those found in the CNCF
* Distribution Project codebase.
*
* @author Scott Frederick
* @author Phillip Webb
* @see <a href=
* "https://github.com/docker/distribution/blob/master/reference/reference.go">Docker
* grammar reference</a>
* @see <a href=
* "https://github.com/docker/distribution/blob/master/reference/regexp.go">Docker grammar
* implementation</a>
* @see <a href="https://github.com/distribution/reference/blob/main/reference.go">OCI
* Image grammar reference</a>
* @see <a href="https://github.com/distribution/reference/blob/main/regexp.go">OCI Image
* grammar implementation</a>
* @see <a href=
* "https://stackoverflow.com/questions/37861791/how-are-docker-image-names-parsed">How
* are Docker image names parsed?</a>