-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
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
Support Children and Parents with namespaces #5083
Comments
Pinging, hoping to get a response. |
Sorry for the delay. We do have a similar situation on each of our architecture builders. We push all the images to namespaces like But this does seem reasonable to me; I'm just not sure how deeply the assumption of What do you think @tianon? |
I technically have the same issue with a lot of my I definitely share the concerns about how deeply our non-namespaced assumptions go (since we've been assuming that for a long time 😅). |
Would you be up for me making a modification to basbhrew to support namespaces in the "FROM" dependency tree (which would solve my specific issue). I can make the change and do a pull request. |
This was fixed by #6054! 👍 |
I can successfully use namespace to build, tag and push for my private docker repository. It looks like in order to use the plumbing commands (Children and Parents) the name of them manifest much match the from in the dockerfile. For example if my manifest filename is mightymouse the the from must be something like FROM mightymouse:1.0, not FROM kilmore/mightymouse:1.0.
The use case is for determining what dependent containers need to be updated when a base image is changed.
An "easy way" may be to allow for namespace usage in the plumbing. I am happy to take a crack at this
Thanks!
The text was updated successfully, but these errors were encountered: