commit | 64472de4c2e2acc7bf883a3e8267ad5aa38e2cb0 | [log] [tgz] |
---|---|---|
author | Lusheng Ji <lji@research.att.com> | Wed Aug 30 02:16:05 2017 +0000 |
committer | Lusheng Ji <lji@research.att.com> | Wed Aug 30 02:16:05 2017 +0000 |
tree | 2b98b583c6d679fa2fb562c2511f5b1a31d51a5a | |
parent | f41d154eb12583d1bac418d999e5df0360e8f3b3 [diff] |
Fix pom.xml Issue-Id: DCAEGEN2-60 Change-Id: Ie6ccb53b32db7fc81f5559146675710e14dce046 Signed-off-by: Lusheng Ji <lji@research.att.com>
Contains the public facing technical documentation for the dcae platform whose audiences include:
This is a Mkdocs project. To serve a local version of the documentation to view your changes:
Install mkdocs and mkdocs-material:
pip install mkdocs pip install mkdocs-material
Clone this repo
Run the following at the root of the cloned repo:
mkdocs serve
View the page at http://127.0.0.1:8000/
Generate the site:
mkdocs build
Build and push the Docker image - note the repository and group YOUR_NEXUS_DOCKER_REGISTRY/onap
can be customized and replaced:
docker build -t YOUR_NEXUS_DOCKER_REGISTRY/onap/dcae-platform-documentation:latest . docker push YOUR_NEXUS_DOCKER_REGISTRY/onap/dcae-platform-documentation:latest
Run the Docker container:
export DOCKER_HOST=tcp://<target docker host> # REVIEW: Does this always pull latest? docker pull YOUR_NEXUS_DOCKER_REGISTRY/onap/dcae-platform-documentation:latest docker run -d --name dpd -p 80:80 YOUR_NEXUS_DOCKER_REGISTRY/onap/dcae-platform-documentation:latest