Docker Updates (#308)

* new path for python build

* add flag

* build tar using git archive

* no exit from start_ray.sh

* update Docker instructions

* update build docker script

* add git revision

* fix typo

* bug fixes and clarifications

* mend

* add objectmanager ports to docker instructions

* rewording

* Small updates to documentation.
This commit is contained in:
Johann Schleier-Smith
2017-02-28 18:57:51 -08:00
committed by Robert Nishihara
parent b91d9cba45
commit ad4b03bf7f
7 changed files with 368 additions and 65 deletions
+11 -16
View File
@@ -43,10 +43,15 @@ extensions = [
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
# The suffix of source filenames.
from recommonmark.parser import CommonMarkParser
# The suffix of source filenames.
source_suffix = ['.rst', '.md']
source_parsers = {
'.md': CommonMarkParser,
}
# The encoding of source files.
#source_encoding = 'utf-8-sig'
@@ -64,9 +69,9 @@ author = u'The Ray Team'
# built documents.
#
# The short X.Y version.
version = '0.01'
from ray import __version__ as version
# The full version, including alpha/beta/rc tags.
release = '0.01'
release = version
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -297,13 +302,3 @@ texinfo_documents = [
# sudo pip install recommonmark
# see also http://searchvoidstar.tumblr.com/post/125486358368/making-pdfs-from-markdown-on-readthedocsorg-using
# The suffix of source filenames.
from recommonmark.parser import CommonMarkParser
# The suffix of source filenames.
source_suffix = ['.rst', '.md']
source_parsers = {
'.md': CommonMarkParser,
}