Merge pull request #675 from pankit/master

Allow + in container ID
This commit is contained in:
Alexander Morozov 2016-05-25 10:35:08 -07:00
commit d57898610b
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ const (
)
var (
idRegex = regexp.MustCompile(`^[\w-\.]+$`)
idRegex = regexp.MustCompile(`^[\w+-\.]+$`)
maxIdLen = 1024
)