summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2020-03-27 11:06:47 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-27 11:06:47 +0000
commit3c442a70384a1c53e00e2f09de91fd67b5f993f6 (patch)
treeda7e59da1e19113228bc5b4cebb6c9042c475538
parent34c9d73b6f2fa86a51cf0f1b774ff3128e66a016 (diff)
parent574c04ab755b7adcf89f2ad7d676056866d51ef0 (diff)
Merge "Update README"
-rw-r--r--certServiceClient/README.md20
1 files changed, 5 insertions, 15 deletions
diff --git a/certServiceClient/README.md b/certServiceClient/README.md
index 12520218..7748b29b 100644
--- a/certServiceClient/README.md
+++ b/certServiceClient/README.md
@@ -5,11 +5,6 @@
mvn clean package
```
-### Building Docker image manually
-Go to the certServiceClient subfolder and execute following statement (1.0.0-SNAPSHOT is related to a current project.version parameter):
-```
-docker build --build-arg VERSION=1.0.0-SNAPSHOT -t onap/org.onap.aaf.certservice.aaf-certservice-client .
-```
### Install the package into the local repository
```
@@ -21,23 +16,18 @@ mvn clean install
mvn clean install -P docker
```
-### Running Docker container local
-```
-docker run --name aaf-certservice-client onap/org.onap.aaf.certservice.aaf-certservice-client
-```
-
-### Running Docker container from nexus
+### Nexus container image
```
-docker run --name aaf-certservice-client nexus3.onap.org:10001/onap/org.onap.aaf.certservice.aaf-certservice-client:1.0.0
+nexus3.onap.org:10001/onap/org.onap.aaf.certservice.aaf-certservice-client:latest
```
-### Running client as standalone docker container
+### Running local client application as standalone docker container
```
-AAFCERT_CLIENT_IMAGE=nexus3.onap.org:10001/onap/org.onap.aaf.certservice.aaf-certservice-client:latest
+AAFCERT_CLIENT_IMAGE=onap/org.onap.aaf.certservice.aaf-certservice-client
DOCKER_ENV_FILE= <path to envfile>
NETWORK_CERT_SERVICE= <docker network of cert service>
-docker run --env-file $DOCKER_ENV_FILE --network $NETWORK_CERT_SERVICE $AAFCERT_CLIENT_IMAGE
+docker run --name aaf-certservice-client --env-file $DOCKER_ENV_FILE --network $NETWORK_CERT_SERVICE $AAFCERT_CLIENT_IMAGE
```
Sample Environment file:
```aidl