From 0cbb058c9257db8c26e5ed09ceccadabb011dc88 Mon Sep 17 00:00:00 2001 From: Martin Klozik Date: Thu, 1 Aug 2019 09:52:11 +0200 Subject: [PATCH] Update of README.md for aai-common Dockerfiles 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 --- Dockerfiles/aai-common/README.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/Dockerfiles/aai-common/README.md b/Dockerfiles/aai-common/README.md index 0726e26b..82131247 100644 --- a/Dockerfiles/aai-common/README.md +++ b/Dockerfiles/aai-common/README.md @@ -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= - docker build \ - -t aaionap/aai-common:${NEW_VERSION}${BASE_TAG:-"-alpine"} -f . + export BASE_IMAGE= + 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). -- 2.16.6