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
Per vendor/redhat/names.md we accept '--' in the build image name. This causes a failure in docker v1.8+.
$ rpm -q docker docker-1.8.1-3.git32b8b25.fc22.x86_64 $ cat /etc/redhat-release Fedora release 22 (Twenty Two) $ sudo docker build -t test/atomicapp--name . repository name component must match "[a-z0-9]+(?:[._-][a-z0-9]+)*" $ sudo docker build -t test/atomicapp-name . Sending build context to Docker daemon 2.08 MB Step 0 : FROM centos:centos7 ...
The text was updated successfully, but these errors were encountered:
To reproduce, attempt to create a new repository on hub.docker.com named "some--thing".
Sorry, something went wrong.
https://forums.docker.com/t/docker-hub-repository-name-does-not-except-two-dashes/3434
Looks like just a bug in the regex that checks.
Changing [a-z0-9]+(?:[._-][a-z0-9]+)* to [a-z0-9]+(?:[._-]+[a-z0-9]+)*
Might fix the problem. Unless docker really wants to force it to be just a single separator field.
No branches or pull requests
Per vendor/redhat/names.md we accept '--' in the build image name. This causes a failure in docker v1.8+.
The text was updated successfully, but these errors were encountered: