Skip to content

Commit a71fa24

Browse files
committed
FORMAT ALL THE THINGS
1 parent 34b38dc commit a71fa24

File tree

108 files changed

+954
-1924
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+954
-1924
lines changed

README-template.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22

33
%%TAGS%%
44

5-
For more information about this image and its history, please see the [relevant
6-
manifest file
7-
(`library/%%REPO%%`)](https://github.com/docker-library/official-images/blob/master/library/%%REPO%%)
8-
in the [`docker-library/official-images` GitHub
9-
repo](https://github.com/docker-library/official-images).
5+
For more information about this image and its history, please see the [relevant manifest file (`library/%%REPO%%`)](https://github.com/docker-library/official-images/blob/master/library/%%REPO%%) in the [`docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images).
106

117
%%CONTENT%%%%LICENSE%%
128

README.md

+36-69
Original file line numberDiff line numberDiff line change
@@ -1,124 +1,91 @@
11
# What is this?
22

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).
84

95
# How do I add a new image's docs
106

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`
1814

1915
# What are all these files?
2016

2117
## `update.sh`
2218

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.
2920

3021
## `push.pl`
3122

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.
3424

3525
## `generate-dockerfile-links-partial.sh`
3626

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).
4128

4229
## `generate-repo-stub-readme.sh`
4330

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.
4732

4833
## `README-template.md` and `user-feedback.md`
4934

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.
5236

5337
## folder `<image name>`
5438

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/`).
5740

5841
## `<image name>/README.md`
5942

6043
This file is generated using `update.sh`.
6144

6245
## `<image name>/content.md`
6346

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
8159

8260
## `<image name>/README-short.txt`
8361

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.
8663

8764
> Go (golang) is a general purpose, higher-level, imperative programming language.
8865
8966
## `<image name>/logo.png`
9067

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)
9369

9470
## `<image name>/license.md`
9571

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`:
9873

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.
10176

10277
## `<image name>/user-feedback.md`
10378

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.
10680

10781
## `<image name>/mailing-list.md`
10882

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:
11284

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
11486

11587
# Issues and Contributing
11688

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].
12090

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.

buildpack-deps/content.md

+5-21
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
# What is `buildpack-deps`?
22

3-
In spirit, `buildpack-deps` is similar to [Heroku's stack
4-
images](https://github.com/heroku/stack-images/blob/master/bin/cedar.sh). It
5-
includes a large number of "development header" packages needed by various
6-
things like Ruby Gems, PyPI modules, etc. For example, `buildpack-deps` would
7-
let you do a `bundle install` in an arbitrary application directory without
8-
knowing beforehand that `ssl.h` is required to build a dependent module.
3+
In spirit, `buildpack-deps` is similar to [Heroku's stack images](https://github.com/heroku/stack-images/blob/master/bin/cedar.sh). It includes a large number of "development header" packages needed by various things like Ruby Gems, PyPI modules, etc. For example, `buildpack-deps` would let you do a `bundle install` in an arbitrary application directory without knowing beforehand that `ssl.h` is required to build a dependent module.
94

105
%%LOGO%%
116

@@ -15,25 +10,14 @@ This stack is designed to be the foundation of a language-stack image.
1510

1611
## What's included?
1712

18-
The main tags of this image are the full batteries-included approach. With
19-
them, a majority of arbitrary `gem install` / `npm install` / `pip install`
20-
should be successfull without additional header/development packages.
13+
The main tags of this image are the full batteries-included approach. With them, a majority of arbitrary `gem install` / `npm install` / `pip install` should be successfull without additional header/development packages.
2114

22-
For some language stacks, that doesn't make sense, particularly if linking to
23-
arbitrary external C libraries is much less common (as in Go and Java, for
24-
example), which is where these other smaller variants can come in handy.
15+
For some language stacks, that doesn't make sense, particularly if linking to arbitrary external C libraries is much less common (as in Go and Java, for example), which is where these other smaller variants can come in handy.
2516

2617
### `curl`
2718

28-
This variant includes just the `curl`, `wget`, and `ca-certificates` packages.
29-
This is perfect for cases like the Java JRE, where downloading JARs is very
30-
common and necessary, but checking out code isn't.
19+
This variant includes just the `curl`, `wget`, and `ca-certificates` packages. This is perfect for cases like the Java JRE, where downloading JARs is very common and necessary, but checking out code isn't.
3120

3221
### `scm`
3322

34-
This variant is based on `curl`, but also adds various source control management
35-
tools. As of this writing, the current list of included tools is `bzr`, `git`,
36-
`hg`, and `svn`. Intentionally missing is `cvs` due to the dwindling relevance
37-
it has (sorry CVS). This image is perfect for cases like the Java JDK, where
38-
downloading JARs is very common (hence the `curl` base still), but checking out
39-
code also becomes more common as well (compared to the JRE).
23+
This variant is based on `curl`, but also adds various source control management tools. As of this writing, the current list of included tools is `bzr`, `git`, `hg`, and `svn`. Intentionally missing is `cvs` due to the dwindling relevance it has (sorry CVS). This image is perfect for cases like the Java JDK, where downloading JARs is very common (hence the `curl` base still), but checking out code also becomes more common as well (compared to the JRE).

buildpack-deps/license.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
View [license information](https://www.debian.org/social_contract#guidelines)
2-
for the software contained in this image.
1+
View [license information](https://www.debian.org/social_contract#guidelines) for the software contained in this image.

busybox/content.md

+11-29
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
# What is BusyBox? The Swiss Army Knife of Embedded Linux
22

3-
At about 2.5 Mb in size, [BusyBox](http://www.busybox.net/) is a very good
4-
ingredient to craft space-efficient distributions.
3+
At about 2.5 Mb in size, [BusyBox](http://www.busybox.net/) is a very good ingredient to craft space-efficient distributions.
54

6-
BusyBox combines tiny versions of many common UNIX utilities into a single small
7-
executable. It provides replacements for most of the utilities you usually find
8-
in GNU fileutils, shellutils, etc. The utilities in BusyBox generally have fewer
9-
options than their full-featured GNU cousins; however, the options that are
10-
included provide the expected functionality and behave very much like their GNU
11-
counterparts. BusyBox provides a fairly complete environment for any small or
12-
embedded system.
5+
BusyBox combines tiny versions of many common UNIX utilities into a single small executable. It provides replacements for most of the utilities you usually find in GNU fileutils, shellutils, etc. The utilities in BusyBox generally have fewer options than their full-featured GNU cousins; however, the options that are included provide the expected functionality and behave very much like their GNU counterparts. BusyBox provides a fairly complete environment for any small or embedded system.
136

147
> [wikipedia.org/wiki/BusyBox](https://en.wikipedia.org/wiki/BusyBox)
158
@@ -19,31 +12,20 @@ embedded system.
1912

2013
## Run BusyBox shell
2114

22-
docker run -it --rm busybox
15+
docker run -it --rm busybox
2316

24-
This will drop you into an `sh` shell to allow you to do what you want inside a
25-
BusyBox system.
17+
This will drop you into an `sh` shell to allow you to do what you want inside a BusyBox system.
2618

2719
## Create a `Dockerfile` for a binary
2820

29-
FROM busybox
30-
COPY ./my-static-binary /my-static-binary
31-
CMD ["/my-static-binary"]
21+
FROM busybox
22+
COPY ./my-static-binary /my-static-binary
23+
CMD ["/my-static-binary"]
3224

33-
This `Dockerfile` will allow you to create a minimal image for your statically
34-
compiled binary. You will have to compile the binary in some other place like
35-
another container.
25+
This `Dockerfile` will allow you to create a minimal image for your statically compiled binary. You will have to compile the binary in some other place like another container.
3626

3727
## More about this image
3828

39-
The tags of this image are built using two different methods. The `ubuntu` tags
40-
are using the `busybox-static` package from Ubuntu, adding a few support files
41-
so that it works in Docker. It's super fast to build (a minute or even less).
42-
The `buildroot` tags are going the long way: they use buildroot to craft a whole
43-
filesystem, with busybox but also all required libraries and other support
44-
files. It has a stronger guarantee of "this will work". It is also smaller
45-
because it's using uclibc, however it takes hours to build.
46-
47-
Having two totally different builders means that if one of the goes belly up, we
48-
can always fall-back on the other since this image is used in much of build
49-
testing of `docker` itself.
29+
The tags of this image are built using two different methods. The `ubuntu` tags are using the `busybox-static` package from Ubuntu, adding a few support files so that it works in Docker. It's super fast to build (a minute or even less). The `buildroot` tags are going the long way: they use buildroot to craft a whole filesystem, with busybox but also all required libraries and other support files. It has a stronger guarantee of "this will work". It is also smaller because it's using uclibc, however it takes hours to build.
30+
31+
Having two totally different builders means that if one of the goes belly up, we can always fall-back on the other since this image is used in much of build testing of `docker` itself.

busybox/license.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
View [license information](http://www.busybox.net/license.html)
2-
for the software contained in this image.
1+
View [license information](http://www.busybox.net/license.html) for the software contained in this image.

0 commit comments

Comments
 (0)