Reputation: 18790
I pushed a container onto my project in docker registry hub,
there are two tabs Information and Tags,
how could I add the Information for my container ?
Upvotes: 0
Views: 79
Reputation: 54212
The information tab is filled when you set up an auto build that builds a Dockerfile that is hosted on your github account. It simply takes the README.md contents of your github project.
The tags tab is filled when you configure your auto build to assign tags to different branches of your github project.
As an example please have a look at this docker hub page and this github project.
Upvotes: 2