2014-04-16 14:07:55 -04:00
|
|
|
Docker Documentation
|
|
|
|
====================
|
|
|
|
|
2014-04-17 11:36:58 -04:00
|
|
|
This directory contains the Docker user manual in the Markdown format.
|
|
|
|
Do *not* edit the man pages in the man1 directory. Instead, amend the
|
|
|
|
Markdown (*.md) files.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-04-17 11:36:58 -04:00
|
|
|
# Generating man pages from the Markdown files
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-08-04 20:59:37 -04:00
|
|
|
The recommended approach for generating the man pages is via a Docker
|
|
|
|
container using the supplied `Dockerfile` to create an image with the correct
|
|
|
|
environment. This uses `go-md2man`, a pure Go Markdown to man page generator.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-08-04 20:59:37 -04:00
|
|
|
## Building the md2man image
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-08-04 20:59:37 -04:00
|
|
|
There is a `Dockerfile` provided in the `docker/docs/man` directory.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-08-04 20:59:37 -04:00
|
|
|
Using this `Dockerfile`, create a Docker image tagged `docker/md2man`:
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-08-04 20:59:37 -04:00
|
|
|
docker build -t docker/md2man .
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-08-04 20:59:37 -04:00
|
|
|
## Utilizing the image
|
2014-04-21 16:28:25 -04:00
|
|
|
|
2014-04-17 15:52:13 -04:00
|
|
|
Once the image is built, run a container using the image with *volumes*:
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-08-04 20:59:37 -04:00
|
|
|
docker run -v /<path-to-git-dir>/docker/docs/man:/docs:rw \
|
|
|
|
-w /docs -i docker/md2man /docs/md2man-all.sh
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-08-04 20:59:37 -04:00
|
|
|
The `md2man` Docker container will process the Markdown files and generate
|
2014-06-25 12:04:59 -04:00
|
|
|
the man pages inside the `docker/docs/man/man1` directory using
|
2014-04-17 15:36:22 -04:00
|
|
|
Docker volumes. For more information on Docker volumes see the man page for
|
2014-04-21 16:28:25 -04:00
|
|
|
`docker run` and also look at the article [Sharing Directories via Volumes]
|
2015-04-11 13:42:17 -04:00
|
|
|
(https://docs.docker.com/use/working_with_volumes/).
|