diff --git a/doc/source/guides/installation_guide.rst b/doc/source/guides/installation_guide.rst index 04e04d06..fb19e97a 100644 --- a/doc/source/guides/installation_guide.rst +++ b/doc/source/guides/installation_guide.rst @@ -121,6 +121,12 @@ To build the image from the mistral source, change directory to the root directo docker build -t . +In case you want pre-built image, you can download it from `openstack tarballs source `_. + +To load this image to docker registry, please run following command:: + + docker load -i '' + The Mistral Docker image is configured to store the database in the user's home directory. For persistence of these data, you may want to keep this directory outside of the container. This may be done by the following steps:: sudo mkdir '' @@ -128,6 +134,8 @@ The Mistral Docker image is configured to store the database in the user's home More about docker: https://www.docker.com/ +**NOTE:** This docker image uses **SQLite** database. So, it cannot be used for production environment. If you want to use this for production environment, then put customized mistral.conf to ''. + Mistral Client Installation ---------------------------