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
if I use gateServer then,it comes
gateServer
repository name component must match "[a-z0-9](?:-*[a-z0-9])*(?:[._][a-z0-9](?:-*[a-z0-9])*)*"
but gateserver works.
gateserver
packageName in Docker := "gateServer"
The text was updated successfully, but these errors were encountered:
Have a look at the regular expression mentioned in the error:
repository name component must match "[a-z] ...
It's [a-z]. which means lowercase only. Uppercase is NOT supported,
Sorry, something went wrong.
AFAIK docker still doesn't support uppercase letters. So we validate your package name upfront for you.
No branches or pull requests
if I use
gateServer
then,it comesbut
gateserver
works.The text was updated successfully, but these errors were encountered: