2013-03-25 23:48:04 -04:00
|
|
|
Docker documentation and website
|
|
|
|
================================
|
2013-03-22 00:47:14 -04:00
|
|
|
|
2013-03-25 23:48:04 -04:00
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
This is your definite place to contribute to the docker documentation. The documentation is generated from the
|
|
|
|
.rst files under sources.
|
2013-03-25 22:52:52 -04:00
|
|
|
|
2013-03-25 23:48:04 -04:00
|
|
|
The folder also contains the other files to create the http://docker.io website, but you can generally ignore
|
|
|
|
most of those.
|
|
|
|
|
|
|
|
|
|
|
|
Installation
|
2013-03-25 22:52:52 -04:00
|
|
|
------------
|
|
|
|
|
2013-03-25 23:48:04 -04:00
|
|
|
* Work in your own fork of the code, we accept pull requests.
|
|
|
|
* Install sphinx: ``pip install sphinx``
|
2013-05-06 20:41:51 -04:00
|
|
|
* Install sphinx httpdomain contrib package ``sphinxcontrib-httpdomain``
|
2013-03-25 23:48:04 -04:00
|
|
|
* If pip is not available you can probably install it using your favorite package manager as **python-pip**
|
2013-03-25 22:52:52 -04:00
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
* change the .rst files with your favorite editor to your liking
|
2013-03-25 23:48:04 -04:00
|
|
|
* run *make docs* to clean up old files and generate new ones
|
|
|
|
* your static website can now be found in the _build dir
|
|
|
|
* to preview what you have generated, cd into _build/html and then run 'python -m SimpleHTTPServer 8000'
|
|
|
|
|
|
|
|
Working using github's file editor
|
|
|
|
----------------------------------
|
|
|
|
Alternatively, for small changes and typo's you might want to use github's built in file editor. It allows
|
|
|
|
you to preview your changes right online. Just be carefull not to create many commits.
|
|
|
|
|
|
|
|
Images
|
|
|
|
------
|
|
|
|
When you need to add images, try to make them as small as possible (e.g. as gif).
|
2013-03-25 22:52:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
2013-03-25 23:48:04 -04:00
|
|
|
* The index.html and gettingstarted.html files are copied from the source dir to the output dir without modification.
|
|
|
|
So changes to those pages should be made directly in html
|
|
|
|
* For the template the css is compiled from less. When changes are needed they can be compiled using
|
2013-04-08 23:10:47 -04:00
|
|
|
lessc ``lessc main.less`` or watched using watch-lessc ``watch-lessc -i main.less -o main.css``
|
|
|
|
|
|
|
|
|
|
|
|
Guides on using sphinx
|
|
|
|
----------------------
|
|
|
|
* To make links to certain pages create a link target like so:
|
|
|
|
|
|
|
|
```
|
|
|
|
.. _hello_world:
|
|
|
|
|
|
|
|
Hello world
|
|
|
|
===========
|
|
|
|
|
|
|
|
This is.. (etc.)
|
|
|
|
```
|
|
|
|
|
|
|
|
The ``_hello_world:`` will make it possible to link to this position (page and marker) from all other pages.
|
|
|
|
|
|
|
|
* Notes, warnings and alarms
|
|
|
|
|
|
|
|
```
|
|
|
|
# a note (use when something is important)
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
# a warning (orange)
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
# danger (red, use sparsely)
|
|
|
|
.. danger::
|
|
|
|
|
|
|
|
* Code examples
|
|
|
|
|
|
|
|
Start without $, so it's easy to copy and paste.
|