adding update about mounted certificates in rst file 63/93863/1
authorBartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
Mon, 19 Aug 2019 11:47:19 +0000 (13:47 +0200)
committerBartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
Mon, 19 Aug 2019 11:49:50 +0000 (13:49 +0200)
Issue-ID: VID-494
Change-Id: I732a426975247448f05539d1a95c0b6c66ccf5a7
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
docs/installation.rst

index 55d9f22..9d1fc70 100644 (file)
@@ -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