Added link for pre-built docker image

Also added Note about how to use mistral
docker image for production environment.

Change-Id: Ibfc9d68b5054171e66ff26349f87bb00a2d91c6f
Partially-implements: blueprint mistral-docker-image
This commit is contained in:
hparekh 2016-01-14 17:06:13 +09:00 committed by hardik
parent 0d86cc51d9
commit 57909bbdc5

View File

@ -121,6 +121,12 @@ To build the image from the mistral source, change directory to the root directo
docker build -t <Name of image> . docker build -t <Name of image> .
In case you want pre-built image, you can download it from `openstack tarballs source <https://tarballs.openstack.org/mistral/images/mistral-docker.tar.gz>`_.
To load this image to docker registry, please run following command::
docker load -i '<path of mistral-docker.tar.gz>'
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:: 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 '<user-defined-directory>' sudo mkdir '<user-defined-directory>'
@ -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/ 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 '<user-defined-directory>'.
Mistral Client Installation Mistral Client Installation
--------------------------- ---------------------------