mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Increase the tag length limit from 30 to 128
Signed-off-by: Burke Libbey <burke.libbey@shopify.com>
This commit is contained in:
parent
7813f85e7d
commit
c95b0e0292
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ import (
|
|||
const DEFAULTTAG = "latest"
|
||||
|
||||
var (
|
||||
validTagName = regexp.MustCompile(`^[\w][\w.-]{0,29}$`)
|
||||
validTagName = regexp.MustCompile(`^[\w][\w.-]{0,127}$`)
|
||||
)
|
||||
|
||||
type TagStore struct {
|
||||
|
|
Loading…
Add table
Reference in a new issue