diff options
author | Jimmy Forsyth <jf2512@att.com> | 2017-02-17 16:32:36 -0500 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2017-02-17 16:34:31 -0500 |
commit | eacbacbd2757aa09217148edcec2baacf8ef9905 (patch) | |
tree | 06ae7a0ad7643ea149d35d816f837c9e8cb86ed9 /lf_config/OpenECOMP-VID-LF-release-notes.txt | |
parent | 48bf0aca24af4b5cc1bf53bcdbf3f66b82710154 (diff) |
[OS-144] Removed ref to ecomp-nexus
Change-Id: I53c9931768cf757b789a26b549123194795576df
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Diffstat (limited to 'lf_config/OpenECOMP-VID-LF-release-notes.txt')
-rw-r--r-- | lf_config/OpenECOMP-VID-LF-release-notes.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lf_config/OpenECOMP-VID-LF-release-notes.txt b/lf_config/OpenECOMP-VID-LF-release-notes.txt new file mode 100644 index 000000000..7cb89e6ab --- /dev/null +++ b/lf_config/OpenECOMP-VID-LF-release-notes.txt @@ -0,0 +1,14 @@ +OpenECOMP VID for LF + +1. Make these two files available on the docker host VM: + +${gerrit_repo_root}/vid/lf_config/vid-my.cnf +${gerrit_repo_root}/vid/lf_config/vid-pre-init.sql + +2. Set up and run the mariadb docker image: + +docker run --name vid-mariadb -e MYSQL_DATABASE=vid_openecomp -e MYSQL_USER=vidadmin -e MYSQL_PASSWORD=<db password here> -e MYSQL_ROOT_PASSWORD=<root db password here> -v /path/to/vid-my.cnf:/etc/mysql/my.cnf -v /path/to/vid-pre-init.sql:/docker-entrypoint-initdb.d/vid-pre-init.sql -v /var/lib/mysql -d mariadb:10 + +3. Set up and run the vid-server docker image: + +docker run -e VID_MYSQL_DBNAME=vid_openecomp -e VID_MYSQL_PASS=<db password here> --name vid-server -p 8080:8080 --link vid-mariadb:vid-mariadb-docker-instance -d <openecomp-nexus>:<openecomp-nexus-port>/openecomp/vid:1.0.0 |