diff options
author | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2019-08-19 13:47:19 +0200 |
---|---|---|
committer | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2019-08-19 13:49:50 +0200 |
commit | b63481896467e5c2a0e5a8df0f2e11e892774ef4 (patch) | |
tree | ba043bd93834ce01cf73afeb272cc0c57a7cf29e | |
parent | 7bb28ca74c56e7312d41f8e152bc40d255172cdb (diff) |
adding update about mounted certificates in rst file
Issue-ID: VID-494
Change-Id: I732a426975247448f05539d1a95c0b6c66ccf5a7
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
-rw-r--r-- | docs/installation.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/installation.rst b/docs/installation.rst index 55d9f225c..9d1fc7017 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -19,7 +19,7 @@ Please follow the instructions given below, for installing VID using a Docker im docker login -u docker -p docker nexus3.onap.org:10001 docker pull nexus3.onap.org:10001/onap/vid:5.0.1 -2. Install by running following command (Use the path for the lf_config folder under the VID git repository as CONFIG_PATH) +2. Install by running following command (Use the path for the lf_config folder under the VID git repository as CONFIG_PATH and path for .jks files for CERTS_PATH, usually epsdk-app-onap/src/main/webapp/WEB-INF/cert ) .. code-block:: bash @@ -27,10 +27,10 @@ Please follow the instructions given below, for installing VID using a Docker im docker run --name vid-mariadb -e MYSQL_DATABASE=vid_openecomp_epsdk -e MYSQL_USER=vidadmin -e MYSQL_PASSWORD=YOUR_PASSWORD -e MYSQL_ROOT_PASSWORD=ROOT_PASSWORD -v CONFIG_PATH/vid-my.cnf:/etc/mysql/my.cnf -v /var/lib/mysql -d mariadb:10 #start VID server - docker run -e VID_MYSQL_DBNAME=vid_openecomp_epsdk -e VID_MYSQL_PASS=YOUR_PASSWORD --name vid-server -p 8080:8080 --link vid-mariadb:vid-mariadb-docker-instance -d nexus3.onap.org:10001/onap/vid:5.0.1 + docker run -e VID_MYSQL_DBNAME=vid_openecomp_epsdk -e VID_MYSQL_PASS=YOUR_PASSWORD -v CERTS_PATH:/opt/app/vid/etc --name vid-server -p 8080:8080 --link vid-mariadb:vid-mariadb-docker-instance -d nexus3.onap.org:10001/onap/vid:5.0.1 Or use docker-compose: .. code-block:: bash - docker-compose up
\ No newline at end of file + docker-compose up |