mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
DRY up valid container name pattern usage
This commit is contained in:
parent
1940015824
commit
3ec39ad01a
1 changed files with 5 additions and 4 deletions
|
@ -31,8 +31,9 @@ import (
|
|||
const MaxImageDepth = 127
|
||||
|
||||
var (
|
||||
defaultDns = []string{"8.8.8.8", "8.8.4.4"}
|
||||
validContainerName = regexp.MustCompile(`^/?[a-zA-Z0-9_.-]+$`)
|
||||
defaultDns = []string{"8.8.8.8", "8.8.4.4"}
|
||||
validContainerNameChars = `[a-zA-Z0-9_.-]`
|
||||
validContainerNamePattern = regexp.MustCompile(`^/?` + validContainerNameChars + `+$`)
|
||||
)
|
||||
|
||||
type Capabilities struct {
|
||||
|
@ -425,8 +426,8 @@ func (runtime *Runtime) Create(config *Config, name string) (*Container, []strin
|
|||
name = utils.TruncateID(id)
|
||||
}
|
||||
} else {
|
||||
if !validContainerName.MatchString(name) {
|
||||
return nil, nil, fmt.Errorf("Invalid container name (%s), only [a-zA-Z0-9_-] are allowed", name)
|
||||
if !validContainerNamePattern.MatchString(name) {
|
||||
return nil, nil, fmt.Errorf("Invalid container name (%s), only %s are allowed", name, validContainerNameChars)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue