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
|
|
|
|
|
|
|
# File List
|
|
|
|
|
|
|
|
docker.md
|
|
|
|
docker-attach.md
|
|
|
|
docker-build.md
|
|
|
|
docker-commit.md
|
|
|
|
docker-cp.md
|
|
|
|
docker-diff.md
|
|
|
|
docker-events.md
|
|
|
|
docker-export.md
|
|
|
|
docker-history.md
|
|
|
|
docker-images.md
|
|
|
|
docker-import.md
|
|
|
|
docker-info.md
|
|
|
|
docker-inspect.md
|
|
|
|
docker-kill.md
|
|
|
|
docker-load.md
|
|
|
|
docker-login.md
|
|
|
|
docker-logs.md
|
|
|
|
docker-port.md
|
|
|
|
docker-ps.md
|
|
|
|
docker-pull.md
|
|
|
|
docker-push.md
|
|
|
|
docker-restart.md
|
|
|
|
docker-rmi.md
|
|
|
|
docker-rm.md
|
|
|
|
docker-run.md
|
|
|
|
docker-save.md
|
|
|
|
docker-search.md
|
|
|
|
docker-start.md
|
|
|
|
docker-stop.md
|
|
|
|
docker-tag.md
|
|
|
|
docker-top.md
|
|
|
|
docker-wait.md
|
|
|
|
Dockerfile
|
|
|
|
md2man-all.sh
|
|
|
|
|
2014-04-17 11:36:58 -04:00
|
|
|
# Generating man pages from the Markdown files
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-04-21 16:28:25 -04:00
|
|
|
The recommended approach for generating the man pages is via a Docker
|
|
|
|
container. Using the supplied Dockerfile, Docker will create a Fedora based
|
|
|
|
container and isolate the Pandoc installation. This is a seamless process,
|
|
|
|
saving you from dealing with Pandoc and dependencies on your own computer.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-04-21 16:37:08 -04:00
|
|
|
## Building the Fedora / Pandoc image
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-06-25 12:04:59 -04:00
|
|
|
There is a Dockerfile provided in the `docker/docs/man` directory.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-04-17 15:36:22 -04:00
|
|
|
Using this Dockerfile, create a Docker image tagged `fedora/pandoc`:
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-04-17 11:36:58 -04:00
|
|
|
docker build -t fedora/pandoc .
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-04-21 16:28:25 -04:00
|
|
|
## Utilizing the Fedora / Pandoc image
|
|
|
|
|
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-06-25 12:04:59 -04:00
|
|
|
docker run -v /<path-to-git-dir>/docker/docs/man:/pandoc:rw \
|
|
|
|
-w /pandoc -i fedora/pandoc /pandoc/md2man-all.sh
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-04-17 11:36:58 -04:00
|
|
|
The Pandoc 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]
|
2014-07-01 20:30:25 -04:00
|
|
|
(http://docs.docker.com/use/working_with_volumes/).
|