Allow + in container ID

Signed-off-by: pankit thapar <pankit@umich.edu>
This commit is contained in:
pankit thapar 2016-03-22 11:40:55 -04:00
parent 69f8a50081
commit 4629512d89
1 changed files with 1 additions and 1 deletions

View File

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