diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-07-15 08:22:16 +0000 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2019-07-15 08:29:36 +0000 |
commit | 612d8c0e3c8c23b24f2378b1f91e803c546d1644 (patch) | |
tree | 9232a4e5cabeb3c4b4098e88fd7b46ae12361615 /windriver | |
parent | 263f17d303aae3f8f65577eb06ea65e314f47834 (diff) |
Add docker profile for openstack modules
Change-Id: I43094436b2b344fe681261a830755a89e8ab2fcc
Issue-ID: MULTICLOUD-704
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'windriver')
-rw-r--r-- | windriver/pom.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/windriver/pom.xml b/windriver/pom.xml index 1eb5a1c6..7299038d 100644 --- a/windriver/pom.xml +++ b/windriver/pom.xml @@ -154,21 +154,21 @@ <exec executable="docker"> <arg value="build"/> <arg value="-t"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:${project.version}"/> <arg value="docker_target"/> </exec> <exec executable="docker"> <arg value="tag"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:latest"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:latest"/> </exec> <exec executable="docker"> <arg value="push"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:${project.version}"/> </exec> <exec executable="docker"> <arg value="push"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:latest"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:latest"/> </exec> </target> </configuration> |