From 5cf7a4563816b736d44ee4f478fbd98e2b816ca4 Mon Sep 17 00:00:00 2001 From: cytopia Date: Sun, 3 Jun 2018 20:17:21 +0200 Subject: [PATCH] Fix warnings --- docs/README.md | 7 ++++++- docs/configuration-files/bashrc-sh.rst | 3 +-- docs/support/faq.rst | 20 ++++++++++---------- 3 files changed, 17 insertions(+), 13 deletions(-) diff --git a/docs/README.md b/docs/README.md index 295f7e7c..bcfa62fa 100644 --- a/docs/README.md +++ b/docs/README.md @@ -23,8 +23,13 @@ You can also build the documentation locally before pushing to ensure everything sudo pip install sphinx sphinx-autobuild sudo pip install sphinx_rtd_theme ``` +#### How to build and error-check +``` +cd docs/ +sphinx-build -a -E -j auto -n -q . _build/html/ +``` -#### How to build +#### How to build continuously ``` cd docs/ sphinx-autobuild . _build/html diff --git a/docs/configuration-files/bashrc-sh.rst b/docs/configuration-files/bashrc-sh.rst index d54a50a1..fd19fa5d 100644 --- a/docs/configuration-files/bashrc-sh.rst +++ b/docs/configuration-files/bashrc-sh.rst @@ -97,10 +97,9 @@ that will always use this file: host> vi ./bash/vim.sh .. code-block:: bash - :name: ./bash/vim.sh :caption: ./bash/vim.sh - alias vim='vim -u /etc/bashrc-devilbox.d/.vimrc + alias vim='vim -u /etc/bashrc-devilbox.d/.vimrc' Whenever you start ``vim`` inside any PHP container, it will automatically use the provided vim configuration file. diff --git a/docs/support/faq.rst b/docs/support/faq.rst index 2bfc62f2..d8cdd0f6 100644 --- a/docs/support/faq.rst +++ b/docs/support/faq.rst @@ -84,16 +84,16 @@ Available PHP modules can be seen at the PHP Docker image repository. Configuration ============= -Can I load custom PHP modules without rebuilding the Docker image? ------------------------------------------------------------------- - -Yes, see :ref:`custom_php_modules` - - -Can I load custom Apache modules without rebuilding the Docker image? ---------------------------------------------------------------------- - -Yes, see :ref:`custom_apache_modules` +.. Can I load custom PHP modules without rebuilding the Docker image? +.. ------------------------------------------------------------------ +.. +.. Yes, see :ref:`custom_php_modules` +.. +.. +.. Can I load custom Apache modules without rebuilding the Docker image? +.. --------------------------------------------------------------------- +.. +.. Yes, see :ref:`custom_apache_modules` Can I change the MySQL root password?