Update of README.md for aai-common Dockerfiles 38/92438/1
authorMartin Klozik <martin.klozik@tieto.com>
Thu, 1 Aug 2019 07:52:11 +0000 (09:52 +0200)
committerMartin Klozik <martin.klozik@tieto.com>
Thu, 1 Aug 2019 07:56:05 +0000 (09:56 +0200)
README.md was updated to reflect recent changes in aai-common
image build process and its naming and tagging.

Change-Id: I37c3c7d6c46a21437a27cd8a9afe08c1c3aa408e
Issue-ID: INT-1024
Signed-off-by: Martin Klozik <martin.klozik@tieto.com>
Dockerfiles/aai-common/README.md

index 0726e26..8213124 100644 (file)
@@ -2,13 +2,23 @@
 
 ### Building the image
 
-Run the following command if building the image in internal network
+Run the following command to build AAI common images at internal network
 
 ```bash
     export NEW_VERSION=<NEW_VERSION>
-    docker build \
-           -t aaionap/aai-common:${NEW_VERSION}${BASE_TAG:-"-alpine"} -f <Dockerfile.alpine | Dockerfile.ubuntu> .
+    export BASE_IMAGE=<alpine | ubuntu>
+    sudo docker build -t \
+        nexus3.onap.org:10003/onap/aai-common-${BASE_IMAGE}:${NEW_VERSION} \
+        -f Dockerfile.${BASE_IMAGE} .
 ```
 
-Replace the NEW\_VERSION with the new docker image version for aai-common
-If different based images are required replace BASE\_TAG accordingly to the base image used.
+Replace the **NEW\_VERSION** with the new docker image version for aai-common.
+Set **BASE\_IMAGE** to **alpine** or **ubuntu** to build aai-common-alpine or
+aai-common-ubuntu image.
+
+NOTE: In order to push images into Nexus3, you have to be logged into Nexus3
+with appropriate credentials first.
+
+NOTE2: Both alpine and ubuntu based aai-common images are built automatically
+by jenkins jobs and they are available at official ONAP docker registry
+(currently nexus3).