|
1 | 1 | # What is this?
|
2 | 2 |
|
3 |
| -This repository contains the docs for each of the Docker official images. See |
4 |
| -[docker-library/official-images](https://github.com/docker-library/official-images) |
5 |
| -for the configuration how the images are built. To see all of the official |
6 |
| -images go to the |
7 |
| -[hub](https://registry.hub.docker.com/repos/stackbrew/?&s=alphabetical). |
| 3 | +This repository contains the docs for each of the Docker official images. See [docker-library/official-images](https://github.com/docker-library/official-images) for the configuration how the images are built. To see all of the official images go to the [hub](https://registry.hub.docker.com/repos/stackbrew/?&s=alphabetical). |
8 | 4 |
|
9 | 5 | # How do I add a new image's docs
|
10 | 6 |
|
11 |
| -- create a folder for my image: `mkdir myimage` |
12 |
| -- create a `README-short.txt` (required, 100 char max) |
13 |
| -- create a `content.md` (required, 80 col wrap) |
14 |
| -- create a `license.md` (required, 80 col wrap) |
15 |
| -- add a `logo.png` (recommended) |
16 |
| -- edit `update.sh` as needed (see below) |
17 |
| -- run `./update.sh myimage` to generate `myimage/README.md` |
| 7 | +- create a folder for my image: `mkdir myimage` |
| 8 | +- create a `README-short.txt` (required, 100 char max) |
| 9 | +- create a `content.md` (required, 80 col wrap) |
| 10 | +- create a `license.md` (required, 80 col wrap) |
| 11 | +- add a `logo.png` (recommended) |
| 12 | +- edit `update.sh` as needed (see below) |
| 13 | +- run `./update.sh myimage` to generate `myimage/README.md` |
18 | 14 |
|
19 | 15 | # What are all these files?
|
20 | 16 |
|
21 | 17 | ## `update.sh`
|
22 | 18 |
|
23 |
| -This is the main script used to generate the `README.md` files for each image. |
24 |
| -The generated file is committed along with the files used to generate it (see |
25 |
| -below on what customizations are available). When a new image is added that is |
26 |
| -not under the `docker-library` namespace on GitHub, a new entry must be added to |
27 |
| -the `otherRepos` array in this script. Accepted arguments are which image(s) |
28 |
| -you want to update and no arguments to update all of them. |
| 19 | +This is the main script used to generate the `README.md` files for each image. The generated file is committed along with the files used to generate it (see below on what customizations are available). When a new image is added that is not under the `docker-library` namespace on GitHub, a new entry must be added to the `otherRepos` array in this script. Accepted arguments are which image(s) you want to update and no arguments to update all of them. |
29 | 20 |
|
30 | 21 | ## `push.pl`
|
31 | 22 |
|
32 |
| -This is used by us to push the actual content of the READMEs to the Docker Hub |
33 |
| -as special access is required to modify the Hub description contents. |
| 23 | +This is used by us to push the actual content of the READMEs to the Docker Hub as special access is required to modify the Hub description contents. |
34 | 24 |
|
35 | 25 | ## `generate-dockerfile-links-partial.sh`
|
36 | 26 |
|
37 |
| -This script is used by `update.sh` to create the "Supported tags and respective |
38 |
| -`Dockerfile` links" section of each generated `README.md` from the information |
39 |
| -in the [official-images `library/` |
40 |
| -manifests](https://github.com/docker-library/official-images/tree/master/library). |
| 27 | +This script is used by `update.sh` to create the "Supported tags and respective `Dockerfile` links" section of each generated `README.md` from the information in the [official-images `library/` manifests](https://github.com/docker-library/official-images/tree/master/library). |
41 | 28 |
|
42 | 29 | ## `generate-repo-stub-readme.sh`
|
43 | 30 |
|
44 |
| -This is used to generate a simple `README.md` to put in the image's repo. |
45 |
| -Argument is the name of the image, like `golang` and it then outputs the readme |
46 |
| -to standard out. |
| 31 | +This is used to generate a simple `README.md` to put in the image's repo. Argument is the name of the image, like `golang` and it then outputs the readme to standard out. |
47 | 32 |
|
48 | 33 | ## `README-template.md` and `user-feedback.md`
|
49 | 34 |
|
50 |
| -These files are the templates used in building the `<image name>/README.md` |
51 |
| -file, in combination with the individual image's files. |
| 35 | +These files are the templates used in building the `<image name>/README.md` file, in combination with the individual image's files. |
52 | 36 |
|
53 | 37 | ## folder `<image name>`
|
54 | 38 |
|
55 |
| -This is where all the partial and generated files for a given image reside, (ex: |
56 |
| -`golang/`). |
| 39 | +This is where all the partial and generated files for a given image reside, (ex: `golang/`). |
57 | 40 |
|
58 | 41 | ## `<image name>/README.md`
|
59 | 42 |
|
60 | 43 | This file is generated using `update.sh`.
|
61 | 44 |
|
62 | 45 | ## `<image name>/content.md`
|
63 | 46 |
|
64 |
| -This file contains the main content of your readme. The basic parts you should |
65 |
| -have are a "What Is" section and a "How To" section. See the doc on [Official |
66 |
| -Repos](https://docs.docker.com/docker-hub/official_repos/#a-long-description) |
67 |
| -for more information on long description. The issues and contribution section |
68 |
| -is generated by the script but can be overridden. The following is a basic |
69 |
| -layout: |
70 |
| - |
71 |
| - # What is XYZ? |
72 |
| - |
73 |
| - // about what the contained software is |
74 |
| - |
75 |
| - %%LOGO%% |
76 |
| - |
77 |
| - # How to use this image |
78 |
| - |
79 |
| - // descriptions and examples of common use cases for the image |
80 |
| - // make use of subsections as necessary |
| 47 | +This file contains the main content of your readme. The basic parts you should have are a "What Is" section and a "How To" section. See the doc on [Official Repos](https://docs.docker.com/docker-hub/official_repos/#a-long-description) for more information on long description. The issues and contribution section is generated by the script but can be overridden. The following is a basic layout: |
| 48 | + |
| 49 | + # What is XYZ? |
| 50 | + |
| 51 | + // about what the contained software is |
| 52 | + |
| 53 | + %%LOGO%% |
| 54 | + |
| 55 | + # How to use this image |
| 56 | + |
| 57 | + // descriptions and examples of common use cases for the image |
| 58 | + // make use of subsections as necessary |
81 | 59 |
|
82 | 60 | ## `<image name>/README-short.txt`
|
83 | 61 |
|
84 |
| -This is the short description for the docker hub, limited to 100 characters in a |
85 |
| -single line. |
| 62 | +This is the short description for the docker hub, limited to 100 characters in a single line. |
86 | 63 |
|
87 | 64 | > Go (golang) is a general purpose, higher-level, imperative programming language.
|
88 | 65 |
|
89 | 66 | ## `<image name>/logo.png`
|
90 | 67 |
|
91 |
| -Logo for the contained software. Specifications can be found in the docs on |
92 |
| -[Official Repos](https://docs.docker.com/docker-hub/official_repos/#a-logo) |
| 68 | +Logo for the contained software. Specifications can be found in the docs on [Official Repos](https://docs.docker.com/docker-hub/official_repos/#a-logo) |
93 | 69 |
|
94 | 70 | ## `<image name>/license.md`
|
95 | 71 |
|
96 |
| -This file should contain a link to the license for the main software in the |
97 |
| -image, wrapped to 80 columns. Here is an example for golang: |
| 72 | +This file should contain a link to the license for the main software in the image, wrapped to 80 columns. Here is an example for `golang`: |
98 | 73 |
|
99 |
| - View [license information](http://golang.org/LICENSE) |
100 |
| - for the software contained in this image. |
| 74 | + View [license information](http://golang.org/LICENSE) |
| 75 | + for the software contained in this image. |
101 | 76 |
|
102 | 77 | ## `<image name>/user-feedback.md`
|
103 | 78 |
|
104 |
| -This file is an optional override of the default `user-feedback.md` for those |
105 |
| -repositories with different issue and contributing policies. |
| 79 | +This file is an optional override of the default `user-feedback.md` for those repositories with different issue and contributing policies. |
106 | 80 |
|
107 | 81 | ## `<image name>/mailing-list.md`
|
108 | 82 |
|
109 |
| -This file is snippet that gets inserted into the user feedback section to |
110 |
| -provide and extra way to get help, like a mailing list. Here is an example from |
111 |
| -the Postgres image: |
| 83 | +This file is snippet that gets inserted into the user feedback section to provide and extra way to get help, like a mailing list. Here is an example from the Postgres image: |
112 | 84 |
|
113 |
| - on the [mailing list](http://www.postgresql.org/community/lists/subscribe/) or |
| 85 | + on the [mailing list](http://www.postgresql.org/community/lists/subscribe/) or |
114 | 86 |
|
115 | 87 | # Issues and Contributing
|
116 | 88 |
|
117 |
| -If you would like to make a new Official Image, be sure to follow the |
118 |
| -[guidelines](https://docs.docker.com/docker-hub/official_repos/) and talk to |
119 |
| - |
| 89 | +If you would like to make a new Official Image, be sure to follow the [guidelines ](https://docs.docker.com/docker-hub/official_repos/) and talk to [email protected]. |
120 | 90 |
|
121 |
| -Feel free to make a pull request for fixes and improvements to current |
122 |
| -documentation. For questions or problems on this repo come talk to us via the |
123 |
| -`#docker-library` IRC channel on [Freenode](https://freenode.net) or open up an |
124 |
| -issue. |
| 91 | +Feel free to make a pull request for fixes and improvements to current documentation. For questions or problems on this repo come talk to us via the `#docker-library` IRC channel on [Freenode](https://freenode.net) or open up an issue. |
0 commit comments