We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/docker/docker/blob/97bed96759678c3611a6cacb533783b0f55fa67b/utils/names.go#L6 defines valid Docker volume names as matching the regexp ^[a-zA-Z0-9][a-zA-Z0-9_.-]+$. The definition in main.ValidVolumeName omits underscores and periods in the 2nd character and onwards.
^[a-zA-Z0-9][a-zA-Z0-9_.-]+$
main.ValidVolumeName
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/docker/docker/blob/97bed96759678c3611a6cacb533783b0f55fa67b/utils/names.go#L6 defines valid Docker volume names as matching the regexp
^[a-zA-Z0-9][a-zA-Z0-9_.-]+$
. The definition inmain.ValidVolumeName
omits underscores and periods in the 2nd character and onwards.The text was updated successfully, but these errors were encountered: