0

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 ?

Hello lad
  • 17,344
  • 46
  • 127
  • 200

1 Answers1

2

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.

Henrik Sachse
  • 51,228
  • 7
  • 46
  • 59
  • 1
    For non-automatically building repositories, you need to edit the Information tab yourself. The Tags tab will get filled with the tags you `docker push`. – Andy Jul 21 '15 at 22:12